I am trying to implement the following display.

My html & css are like this...
<div class="label iepngfix">Nickname</div>
<div class="text">
<?php echo $nickname; ?>
</div>
.label {
float: left;
font-weight: bold;
padding: 0;
}
.text {
float: left;
margin: 0 0 0 5px;
word-wrap: break-word;
}
In IE6, 7 it appears fine but, in IE8, Chrome and Firefox, it appears like this...

What am I missing over here?
Regards