프로그래밍/HTML

배경이미지 고정하는 CSS

Doonee 2013. 11. 5. 16:20
반응형

<!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>      

<title>www.doonee.net - 배경이미지 고정</title>   

<style type="text/css">   

body

{   

    background-color: white;    

    background-image: url(https://t1.daumcdn.net/cfile/tistory/21745940520C398D32);    

    background-repeat: no-repeat;    

    background-attachment: fixed;  

    color:White;

}   

</style>  

</head>  

<body>  

    배경이미지 고정  

</body>  

</html>


출력화면