quick html help

mobiblu

Senior member
May 30, 2005
363
0
0
Jun 4, 2005
19,723
1
0
<div style="width:76.8%;height:10%;border:1px solid black;margin-bottom:3px;">Top</div>
<div style="width:8%;height:50%;border:1px solid black;float:left;">Left</div>
<div style="width:68%;height:50%;border:1px solid black;float:right;margin-right:23%;">Right</div>
 

FeuerFrei

Diamond Member
Mar 30, 2005
9,144
929
126
Altering above code, last div:

<div style="width:68%;height:50%;border:1px solid black;float:left;margin-left:3px;">Right</div>
 
Jun 4, 2005
19,723
1
0
Originally posted by: FeuerFrei
Altering above code, last div:

<div style="width:68%;height:50%;border:1px solid black;float:left;margin-left:3px;">Right</div>

:eek:

If you're gonna do that, you'll require a slight modification to the first div, so they align properly.

<div style="width:76.4%;height:10%;border:1px solid black;margin-bottom:3px;">Top</div>
<div style="width:8%;height:50%;border:1px solid black;float:left;">Left</div>
<div style="width:68%;height:50%;border:1px solid black;float:left;margin-left:3px;">Right</div>

Thanks, FeuerFrei!