Hi,
I'm trying to get the link text within a div to sit at the bottom of the div...
I've created a square with a fixed width and height and want the text to sit on the bottom of the area... leaving blank space above.
So i've got
<div id="container">
<ul>
<li><a href="#">1</a></li>
<li><a href="#">2</a></li>
</ul>
</div>
style wise
#container ul li a{
width:100px;
height:100px;
vertical-align: bottom;
background-color: #999999;
}
Sorry its such a basic question but google doesnt seem to be helping me
I'm trying to get the link text within a div to sit at the bottom of the div...
I've created a square with a fixed width and height and want the text to sit on the bottom of the area... leaving blank space above.
So i've got
<div id="container">
<ul>
<li><a href="#">1</a></li>
<li><a href="#">2</a></li>
</ul>
</div>
style wise
#container ul li a{
width:100px;
height:100px;
vertical-align: bottom;
background-color: #999999;
}
Sorry its such a basic question but google doesnt seem to be helping me
