Witajcie,
Chciałbym zrobić stopkę składająca się z 3 kolumn, jedna obok drugiej. Napisałem kod niestety kolumny są jedna pod drugą i nie wiem gdzie zrobiłem błąd.
<html>
<head>
<style type="text/css">
body{
width: 90%;
margin:9 auto;}
#content {overflow:auto;}
#nav, #feature, #footer {
margin: 1%;}
.column1, .column2, .column3 {
width: 31.3%
float:left;
margin 1%;}
.column3 {margin-right:0%;}
#footer {
background-color: #efefef;
padding: 0.5em; 0;}
#feature, .articel {
height: 10em;
margin-bottom 1em;
background-color: #efefef
</style>
</head>
</style>
<div>
<div id="content">
<div id="feature">
<p>OPIS</p>
</div>
<div class="articel column1">
<p>wysylka</p>
</div>
<div class="articel column2">
<p>serwis</p>
</div>
<div class="articel column3">
<p>Regulamin</p>
</div>
<div id="footer"
<p>© Wszelkie prawa zastrzeżone</p>
</div>
</body>
</html>