Within a <ul>
element, clearly the vertical spacing between lines can be formatted with the line-height attribute.
My question is, within a <ul>
element, how do I set the vertical spacing between the list items?
Within a <ul>
element, clearly the vertical spacing between lines can be formatted with the line-height attribute.
My question is, within a <ul>
element, how do I set the vertical spacing between the list items?
li
elements not the ul
element. –
Armageddon Old question but I think it lacked an answer. I would use an adjacent siblings selector. This way we only write "one" line of CSS and take into consideration the space at the end or beginning, which most of the answers lacks.
li + li {
margin-top: 10px;
}
margin-top
rather than line-height
. I have multiline list items--i.e. each list item takes up several lines--and I don't want extra spacing between the lines within a list item; I only want extra spacing between list items. This does that. (I also am writing HTML in a context where I can't use CSS code per se; I have to put the CSS inline.) –
Haletta HTML
<ul>
<li>A</li>
<li>B</li>
<li>C</li>
<li>D</li>
<li>E</li>
</ul>
CSS
li:not(:last-child) {
margin-bottom: 5px;
}
EDIT: If you don't use the special case for the last li element your list will have a small spacing afterwards which you can see here: http://jsfiddle.net/wQYw7/
Now compare that with my solution: http://jsfiddle.net/wQYw7/1/
Sure this doesn't work in older browsers but you can easily use js extensions which will enable this for older browsers.
:first-child
and it would work in everything IE7+ –
Linearity I would be inclined to this which has the virtue of IE8 support.
li {
margin-top: 10px;
border:1px solid grey;
}
li:first-child {
margin-top:0;
}
Add a margin
to your li
tags. That will create space between the li
and you can use line-height
to set the spacing to the text within the li
tags.
you can also use the line-height property on the ul
ul {
line-height: 45px;
}
div {
border: 2px solid black;
}
<div>
<ul>
<li>line one</li>
<li>line two</li>
<li>line three</li>
</ul>
</div>
To apply to an entire list, use
ul.space_list li { margin-bottom: 1em; }
Then, in the html:
<ul class=space_list>
<li>A</li>
<li>B</li>
</ul>
Use CSS grid on the parent ul
element like so:
ul {
display: grid;
gap: 10px;
}
Many times when producing HTML email blasts you cannot use style sheets or style /style blocks. All CSS needs to be inline. In the case where you want to adjust the spacing between the bullets I use li style="margin-bottom:8px;" in each bullet item. Customize the pixels value to your liking.
I found that it was much easier for me to create spacing after list items by adding margin-bottom to ordered lists unordered lists as a whole instead of individual list items.
<ol style="line-height: 1.5em; margin-bottom: 15px">
<li>A</li>
<li>B</li>
<li>C</li>
</ol>
<ul style="line-height: 1.5em; margin-bottom: 15px">
<li>A</li>
<li>B</li>
<li>C</li>
</ul>
Use CSS flex on the parent ul element like so:
ul {
display: flex;
flex-direction: column;
gap: 1rem;
}
setting padding-bottom for each list using pseudo class is a viable method. Also line height can be used. Remember that font properties such as font-family, Font-weight, etc. plays a role for uneven heights.
<br>
between <li></li>
line entries seems to work perfectly well in all web browsers that I've tried, but it fails to pass the on-line W3C CSS3 checker. It gives me precisely the line spacing I am after. As far as I am concerned, since it undoubtedly works, I am persisting in using it, whatever W3C says, until someone can come up with a good legal alternative.
© 2022 - 2024 — McMap. All rights reserved.
ul li { margin: ???; padding: ???; line-height: ???; }
all or some of those CSS attributes. – Anon