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 trialDan Varnau
7,681 PointsWhere's the CSS to make the inputs align vertically instead of in a line?
I've looked through all of main.css and can't figure out what makes the inputs align vertically. I assume it's a display property, but I can't figure out where it is.
1 Answer
Jeff Lemay
14,268 PointsSo each input is on it's own line?
input {
display:block;
}
Dan Varnau
7,681 PointsDan Varnau
7,681 PointsThat's what I thought it should be, but I can't find it anywhere in the CSS file that's included in the lesson.
Jason Anello
Courses Plus Student 94,610 PointsJason Anello
Courses Plus Student 94,610 Pointsdisplay: block
is correct but it was applied to the labels rather than the inputs for this project. The inputs are still inline.line 87:
Aleksander Samól
Courses Plus Student 2,713 PointsAleksander Samól
Courses Plus Student 2,713 PointsJust to add to the answer:
if you think you know the property, you can search its possible values on-line, e.g. on http://www.w3schools.com/. Just type "display" in the search box and it will tell you all about it ;)