Hello,
I am trying align bullets with the bottom of the text in the li tags. I used different font sizes for text and bullets because that's what the design calls for. But since list items and anchor tags are inline elements I can't use top and bottom margin to align them with the bullets. Please advice. Any help is appreciated.
Here is my HTML:
<ul id="nav">
<li><a href="">Buyers</a></li>
<li><a href="">Sellers</a></li>
<li
Here's my CSS:
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/3.1.0/build/cssreset/reset-min.css">
<style>
ul#nav li{color:#FDD458;list-style-type:square;list-style-position:inside;font-size:26px;}
ul#nav li a{color:#666;text-decoration:none;font-size:16px;}
</style>