I’m trying to align some text along the right side of this div. this is what I have
#menu ul li a{
float:left;
display:block;
font-family: Arial, Helvetica, sans-serif;
font-weight: bolder;
font-size: 1.1em;
text-transform: uppercase;
clear:left;
list-style-type:none;
text-align: right;
height:17px;
}
<div id="menu">
<ul>
<li><a href="/">blah</a></li>
<li><a href="/blah2">blah2</a></li>
</ul>
</div>
It seems simple, but cant put my finger on it. :injured: