Site icon Tech blog with tips, tricks and hacks

Bullet point spacing with css

To increase the spacing between bullet points with CSS simple add the below code to your .css file:

ul li
{
margin:.5em 10% .5em 0;
}

Obviously you can change the values to reach your desired spacing, but the above works well and looks neat and tidy.

An example using this method would look like this:

Exit mobile version