CSS ile Site Taslağı Oluşturma
CSS ile Site Taslağı Oluşturma
HTML Kodları ;
<div id="wrapper"> <div id="header"> </div> <div id="buton"> </div> <div id="content"> </div> <div id="sidebar"> </div> <div id="footer"> </div> </div>
CSS Kodları ;
#wrapper { height:600px; width:700px; margin:10px auto; } #header { height:100px; width:700px; background-color:#00C; } #buton { height:50px; width:700px; background-color:#60C; } #content { height:450px; width:500px; background-color:#69F; float:right; } #sidebar { height:450px; width:200px; background-color:#0CF; float:left; } #footer { height:50px; width:700px; background-color:#6FF; clear:both; }