I've never used or even heard of this content property but it is interfering with my ability to select multiple items from a select list. Whatever 'content' is, I need it because when I delete it, there are background hignlights that no longer work properly.
Can someone help me figure this out? Is there a workaround?
form li:after
{
clear:both;
content:".";
display:block;
height:0;
visibility:hidden;
}
<form method="post" action="">
<li id="li_6">
<label class="description" for="element_6">test</label>
<div>
<select class="element select medium" id="element_6" name="element_6" size="10" MULTIPLE>
<option value="1">test1</option>
<option value="2">test2</option>
</select>
</div>
</li>
</form>