Tworzę layout na stronę i mam taki problem mianowicie nie pokazuje mi się stopka oraz nie mogę stworzyć diva odpowiadającego szaremu
kwadratowi w logo na stronie http://zs4.tychy.edu.pl/test/.
Jak to zrobić, co robię źle? próbowałem chyba z setek kombinacji ale to tylko komplikuje sprawę.
kod html:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <link rel="stylesheet" type="text/css" href="style.css" /> </head> <div id="general"> <div id="logo_background"> <div id="logo_left"> <!--<div id="logo"> </div>--> </div> </div> <div id="TOP"> <div id="menu_top"> </div> </div> </html>
@charset "UTF-8"; body{margin:5px;padding:0} body{font: arial,sans-serif;text-align:center} #general { width: 1000px; /*background-image: url(images/tlo.png);*/ background-color:#F3F2ED; } #logo_background { width: 1000px; height: 220px; /*background-image: url(images/logo_background.png);*/ background-color: none; } #TOP { width: 1000px; height: 20px; /*background-image: url(images/logo_background.png);*/ } #menu_top { float: left; width: 700px; height: 40px; /*background-image: url(images/logo_background.png);*/ background-color: green; } #szukaj { float: right; width: 300px; height: 40px; /*background-image: url(images/logo_background.png);*/ background-color: blue; } #zdjecia { float: right; width: 450px; height: 220px; /*background-image: url(images/logo_background.png);*/ background-color: gray; } #szybkie_wybieranie { float: left; width: 550px; height: 80px; /*background-image: url(images/logo_background.png);*/ background-color: #F585ED; } #left { float: left; width: 250px; background-color: #2585ED; } #right { float: right; width: 750px; background-color: #5585ED; } #bottom { width: 1000px; height: 40px; background-color: green; } #logo { width: 550px; height: 80px; /*background-image: url(images/logo_background.png);*/ background-color: white; } #txt { margin: 2px; }