|
vertical div1 {height: 100%; width: 50%;}
vertical div2 {height: 100%; width: 50%;}
horizontal div1 {height: 10px; width: 100%;}
horizontal div1 {height: 10px; width: 100%;}
If you want to change the width's then the vertical div's width's will be add up to equal the same amount as the width of 1 horizontal div.
so u could have:
vertical div1 {height: 100%; width: 300px;}
vertical div2 {height: 100%; width: 100px;}
horizontal div1 {height: 10px; width: 400px;}
horizontal div1 {height: 10px; width: 400px;}
or:
vertical div1 {height: 100%; width: 200px;}
vertical div2 {height: 100%; width: 200px;}
horizontal div1 {height: 10px; width: 400px;}
horizontal div1 {height: 10px; width: 400px;}
or anything you want as long as the width of both vertical div's add up to the width of 1 horizontal div.
(have i answered your question or have i misunderstood?)
|