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 trialSeHyun Choi
3,441 PointsHow to put space between <li>
I gave background-color:#fff; for <li> tags. Instead of having one big blob of white I just want little gap between (vertical) <li>. margin-bottom:10px is not working.
3 Answers
Curtis Vanzandt
9,165 PointsInstead of margin-bottom
, try padding-bottom
!
SeHyun Choi
3,441 PointsMargin-bottom and padding-bottom both don't work for me.
Curtis Vanzandt
9,165 PointsCan you post your code so we can better assist?
SeHyun Choi
3,441 PointsCurtis you were right margin-bottom will make the gap. But when I do it on the specific css file for some reason it doesn't work...
- { box-sizing:border-box;
}
body { background-color:#293859; color:#fff;
}
ul { list-style-type:none; padding:0; margin:0; }
h1 { margin-top:0; margin-bottom:0; }
/Class Selector/
.main-header { text-align:center;
background-color:salmon;
}
.name, .main-nav li { margin-bottom:10px; padding:10px; }
.main-nav a { font-size:19px;
}
.name a, .main-nav a { color:#fff; padding:10px; display:block; }