Our website designer is looking to create a vertical UL / LI list that matches the design in the image below.
However, when using this style, I ended up with:
The result looked like this:
<style type="text/css">
ul {
list-style: none;
}
ul li:after {
content: "\25BC \0020";
}
ul li:before {
content: "\25A0 \0020"; color:#C60;
}
</style>
I'm considering switching to a table format, but is there a way to achieve an aligned list even if the line overflows?