CSS Background
10
●2.148
- 20-05-2010, 19:54:33Eposta Aktivasyonu Gerekmekte<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
html, body {
height: 100%;
margin: 0;
padding: 0;
}
img#bg {
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
}
#icerik {
position:relative;
z-index:1;
}
</style>
<!--[if IE 6]>
<![endif]-->
<!--[if IE 6]>
<style type="text/css">
html { overflow-y: hidden; }
body { overflow-y: auto; }
#bg { position:absolute; z-index:-1; }
#icerik { position:static; }
</style>
<![endif]-->
</head>
<body>
<img src="bgimage.jpg" alt="background image" id="bg" />
<div id="icerik">Buraya içeriğinin tamamı gelecek, header, footer vs. dahil</div>
</body>
</html>
Bu kodu aynen alıp, <div id="icerik"></div> bölümünün içinde çalışırsanız, istediğiniz olacaktır.