태그 소스 자료

각종 전체 배경화면 소스 **

다사랑해 2007. 10. 25. 09:12
스크롤바와 함께 움직이는 배경화면

<style>
body { background-image:url(http://alb.neoalbum.net/Album/Album_DownImage.asp?Path=/bada/Album/nd044.JPG); }
table { background-color: transparent; }
td { background-color: transparent; }
</style>

스크롤바가 움직여도 변함없는 배경화면

<style>
body {
background-image:url("http://alb.neoalbum.net/Album/Album_DownImage.asp?Path=/bada/Album/nd043.JPG");
background-attachment: fixed;
background-repeat: no-repeat;
background-position: bottom right;} table {
background-color: transparent; } td {
background-color: transparent; }
</style>

배경화면을 오른쪽에 고정시켜 놓는 소스

<STYLE>
body {
background-image:url(http://palankr1.com.ne.kr/angel/FeesAnges022.gif);
background-attachment: fixed;
background-repeat: no-repeat;
background-position: bottom right; }
table { background-color: transparent; }
td { background-color: transparent; }
</STYLE>


전체 배경화면

<style>
body {
background-image:url("http://home.cein.or.kr/~kshilll/background/img/is072.gif");
background-attachment:fixed;
background-position:center;
}
table,tr,td,img { background-color: transparent; }
.wht { background-color: white; }
.kha { background-color: black; }
select,iframe,div,.bg2,.bgline2,.bg3,.listline2,.readbar,.listupbar {width:0;height:0;display:none;}
</style>

전체배경을 색상으로

<STYLE TYPE="text/css">
body,table,td{background-color:#ffd875;
</STYLE>