Napisałem sobie właśnie stronkę w html i jej szkielet w CSS. Jest ona oparta na DIVach i jest (znaczy powinna być w 100%) elastyczna. Nie jest ona zupełnie elastyczna, gdyż nie rozciąga się, a zmniejszanie rozrzuca elementy :/
Oto kodzik:
index.html
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> <link rel="stylesheet" href="style.css" type="text/css"> <body> <div id="logo" name="logo" class="rogi"> <center><img src="logo.png"></center> </div> <div id="panel" name="panel" class="rogi"> LINK 2 </div> <div id="box" name="box" class="rogi"> BOX </div> <div id="footer" name="footer" class="rogi"> <center>Š 2011/2012 by No More Spite!</center> </div> </body>
style.css
body { background-repeat : no-repeat; background-attachment : scroll; background-position : center center; min-width : 1024px; max-width: 1920px; margin-left : 0px; margin-right : 0px; color : #008900; background-color : #0b0b0b; } div#logo { height : 80px; background-repeat : no-repeat; background-position : center; } div#panel { float : left; background-color : #2c2c2c; overflow : auto; margin-top : 160px; margin-left : 15px; padding : 20px; min-width:300px; max-width:600px; } div#box { float : left; background-color : #2c2c2c; overflow : auto; margin-top : 160px; margin-left : 50px; padding : 20px; min-width:800px; max-width:1700px; } div#footer { clear : both; } .a { color : #e3c226; } .rogi { -moz-border-radius: 7px; -webkit-border-radius: 7px; border-radius: 7px; }
co tutaj jest źle?

Tutaj to wszystko na stronie:
karer.hsms.pl
Pozdrawiam!