Snabb hjälp i css.
Ska nu börja koda ett skolprojekt och fastnade nu i början med hur i helsikke jag ska importera bilder i mina divs i css dokumentet.
mitt css dokument ser nu ut såhär :
body {background-color:#BBBABC; padding-left:35px;}
.layout {font-family: arial;
font-size: 12px;
font-weight: normal;
color: #333333;
line-: 140%;
margin: 2px;
background-color: #cccccc;
padding: 10px;
padding-left:10px;
border: 1px solid #FFFFFF;
width: 95%;
-webkit-border-top-left-radius:5px;
-webkit-border-top-right-radius:5px;
-webkit-border-bottom-left-radius:5px;
-webkit-border-bottom-right-radius:5px;
-khtml-border-radius-topleft:5px;
-khtml-border-radius-topright:5px;
-khtml-border-radius-bottomleft:5px;
-khtml-border-radius-bottomright:5px;
-moz-border-radius-topleft:5px;
-moz-border-radius-topright:5px;
-moz-border-radius-bottomleft:5px;
-moz-border-radius-bottomright:5px;
margin-right: auto; margin-left: auto;
float: left;}
}
.header {
background-image:url(bilder\Header1.PNG);
width: 127px; height: 127px;
}
Bilden i .header vägrar att visas och jag har ingen aning om vad som är problemet.
Mitt html dokument ser ut som såhär :
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<link href="formatering.css" rel="stylesheet" type="text/css">
<title>Webdesign</title>
</html>
<body>
<div class="layout">
<div class="huvud">
</div>
</div>
</body>
</html>