How can I stretch the image In the site im making, so that it fills the header?.
Its my first ever site hand coded in Notepad++ so im a bit of a noob. 😛
HTML
CSS
Its my first ever site hand coded in Notepad++ so im a bit of a noob. 😛
HTML
Code:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<title></title>
</head>
<div id="header">
</div>
<body>
<div id="main">
<p>test</p>
</div>
</body>
CSS
Code:
/*
p {color:blue;}
*/
body {
background-image: url("images/background.png");
background-repeat: repeat;
}
#main {
width: 980px;
height: 280px;
margin: 0 auto;
padding: 0px;
background-image: url("images/main.png");
background-repeat: repeat;
}
#header {
width: 980px;
height: 280px;
margin: 0 auto;
padding: 0px;
background-image: url("images/header.jpg");
background-repeat: no-repeat;
}







