Is there a way in CSS to align text with the top line of the background color? I tried using padding-top:-px but it didn't work. Here is the code on jsfiddle: http://jsfiddle.net/5xR8V/
<div class="a">
texttext
</div>
.a{
position: absolute;
top:100px;
width: 200px;
height: 19px;
background: #000000;
font-size: 20px;
color: #FFFFFF;
}