Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialmaya sophie
5,754 PointsThe 'submit' and 'reset' buttons are not displayed inline when 769 px or more
Hi I just can't make them display inline...it may be an app bugg...I don't know ...pls help
5 Answers
Kevin Gates
15,053 PointsUnder your files: css/selectors.css
At the end you have this:
@media (min-width: 769px) {
.inln {
widht: auto;
display: inline-block;
}
}
If you look closely, you misspelled "width".
Delicia Wharton
UX Design Techdegree Student 11,098 PointsI used correct spelling but it still isn't working
@media (min-width: 769px) { .inln { width: auto; display: inline-block; } }
Justice Munyanyi
14,165 PointsCorrect typo on width and recheck.
maya sophie
5,754 Pointsthx ...so much time lost....:(
Kevin Gates
15,053 PointsHey, no worries. We've all been there. :)
Robin McKenzie
4,007 PointsDon't use Workspaces, use a decent (and FREE) IDE like VS Code. That way, any typos are highlighted. This will save you tons of time in the long run.