DomkiRomki
New Member
Im still having a bit trouble understanding my divs. Im trying to make a website that changes its sizes according to browser/screen size.Ive gotten this far:my html:\[code\]<div id="wrapper"> <div id="header">Header</div> <div id="left">Left</div> <div id="right">Right</div> <div id="footer">Footer</div></div>\[/code\]my css:\[code\]#wrapper{width: 60%;}#header{width: 100%; padding-top: 11.00%;}#left{float: left; width: 27.5%; padding-top: 44%;}#right{float: left; width: 72.5%; padding-top: 44.00%;}#footer{clear: both; width: 100%; padding-top: 11.40%;}\[/code\]Now my divs are exactly the right size, the problem is that the conect is always at the bottom of the div but i need it to be like a normal div so i can do anything i want with it.Whats the easiest way to use it like a normal div?Thank you for any help!