HTML
HTML 배경 이미지
기련이
2020. 5. 18. 18:22
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>배경 이미지</title>
<style type="text/css">
body{
background-image: url("Penguins.jpg"),url("Koala.jpg");
background-repeat: no-repeat, repeat-x; /*x는 가로 y는 세로*/ /*반복x: no-repeat*/
/* repeat/ no-repeat /repeat-x / repeat-y*/
background-position: right top, left top;
/*background-position: fixed;*/
background-attachment: scroll, fixed;
}
</style>
<body>
<!-- 배경 이미지 넣기 url("파일명"); -->
<h1>a</h1>
<h1>a</h1>
<h1>a</h1>
<h1>a</h1>
<h1>a</h1>
<h1>a</h1>
<h1>a</h1>
<h1>a</h1>
<h1>a</h1>
<h1>a</h1>
<h1>a</h1>
<h1>a</h1>
<h1>a</h1>
<h1>a</h1>
<h1>a</h1>
<h1>a</h1>
<h1>a</h1>
</body>
</html>