Web Tasarım İle İlgili Bir Soru?

Kodla Büyü
css'e

Kod:
body
{
background-image:url('img_tree.png');
background-repeat:no-repeat;
background-position:right top;
}

gibi bir kod eklerseniz arkaplan sabit kalır.

ayrıca google'da "sabit arkaplan html" diye arama yaparsanız istediğiniz sonucu bulabilirsiniz.
 
body {
background-attachment: fixed;
background-color: #FFFFFF;
background-image: url("http://www.kayserifatih.gov.tr/templates/studytolearn/images/Bottom_texture.jpg");
background-position: center top;
background-repeat: repeat-x;
color: #393714;
height: 100%;
margin: 0;
min-height: 100%;
min-width: 800px;
padding: 0;
}

sayfanın css sinde body ile ilgili bunlar var.
background-attachment: fixed; sanırım sabitleyen burası
 
alpaygunes' Alıntı:
body {
background-attachment: fixed;
background-color: #FFFFFF;
background-image: url("http://www.kayserifatih.gov.tr/templates/studytolearn/images/Bottom_texture.jpg");
background-position: center top;
background-repeat: repeat-x;
color: #393714;
height: 100%;
margin: 0;
min-height: 100%;
min-width: 800px;
padding: 0;
}

sayfanın css sinde body ile ilgili bunlar var.
background-attachment: fixed; sanırım sabitleyen burası


background-attachment:
Arkaplan sayfa ile birlikte kaysın mı yoksa sabit mi kalsın ayarını bu seçenek ile yaparız. Bunun değerleri:

background-attachment:scroll – sayfa ile kayar
background-attachment:fixed – sabittir
 
BBNET
Geri
Üst