Welcome! This is my HTML code:
<div style="width:220px;float:left;" id="radio_text">
<ul style="width:20px;float:left;display:block;">
<li style="list-style:none;line-height:13px;height:13px;float:left;"><input type="radio" name="radio_flag" checked="true" /></li>
<li style="list-style:none;line-height:13px;height:13px;float:left;"><input type="radio" name="radio_flag" /></li>
<li style="list-style:none;line-height:13px;height:13px;float:left;"><input type="radio" name="radio_flag" /></li>
</ul>
<ul style="width:200px;float:left;">
<li style="list-style:none;line-height:13px;height:13px;width: 200px;float:left;">Show All</li>
<li style="list-style:none;line-height:13px;height:13px;width: 200px;float:left;">Show Only Members</li>
<li style="list-style:none;line-height:13px;height:13px;width: 200px;float:left;">Show Only Accepted Contacts</li>
</ul>
</div>
This is my CSS:
#radio_text ul{float:left;}
#radio_text ul li{background: none;border:none;color: #000000;float: left;font-family: Arial,Helvetica,sans-serif;font-size: 11px;font-weight: normal;margin-right: 2px;padding: 1px 7px;text-align: left;}
Here are the Outputs:
I need help with displaying it properly in Internet Explorer 7.
Thank you!