I am trying to implement the following display.

alt text

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...

alt text

What am I missing over here?

Regards

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Your CSS and HTML don't really match, but my guess is that since you don't give a width to the second float and it contains a long text, the browser makes it as wide as possible thus it won't fit beside the first float.

Or something you are not showing us is triggering this. Is your page triggering standards mode (e.g. does it have a DOCTYPE)?

link|improve this answer
1  
Without setting the width explicitly the element will try to expand as much as possible - this is standard behaviour. See: jsfiddle.net/yijiang/xbzVp/1 – Yi Jiang Nov 4 '10 at 9:45
feedback

If you give div.text a set width you will get the results that you're looking for.

Example: If the containing box is 250px, div.label is naturally 90px, then div.text needs a set width of 155px or less (that's taking it's 5px margin into account).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.