Hi,
Below is a small piece of html. I'm using FF 3. It's of two divs. Inside the first Div are three divs: div A, div B and div C. Everything does what I need except that div B appears below div A and div C appears below div B. I need all three of div A, B and C to begin at the same vertical height.
Would someone mind telling me what I need to tweak to make this happen?
Below is a small piece of html. I'm using FF 3. It's of two divs. Inside the first Div are three divs: div A, div B and div C. Everything does what I need except that div B appears below div A and div C appears below div B. I need all three of div A, B and C to begin at the same vertical height.
Would someone mind telling me what I need to tweak to make this happen?
Code:
<html> <head> </head> <body> <div style='position:relative;border:1px red solid;height:auto;'> <div style='border:1px black solid;position:relative;left:0%;top:0%;height:auto;width:33%;'> Div A </div> <div style='border:1px black solid;position:relative;left:33%;top:0%;height:auto;width:33%;'> Div B<br>Div B<br>Div B<br>Div B<br> </div> <div style='border:1px black solid;position:relative;left:66%;top:0%;height:auto;width:33%'> Div C </div> </div> <div style='position:relative;border:1px green solid;height:auto;'> Second div<br> </div> </body> </html>
Comment