<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>background</title>
<style>
/* default setting */
* {margin: 0; padding: 0;}
a {color: black; text-decoration: none;}
li {list-style: none;}
/* test */
div {
width: 200px; height: 200px;
border: 1px solid black;
text-align: center;
line-height: 200px;
float: left;
margin: 10px;
}
.box01 {
background: yellow;
}
.box02 {
background: url(./images/img01.jpg);
}
.box02:hover {
background: url(./images/img03.jpg);
}
.box03 {
width: 300px; height: 300px;
background: url(./images/img01.jpg) no-repeat;
background-size: cover;
}
.box04 {
background: url(./images/img04.jpg);
}
.box04:hover {
background-size: 120%;
}
</style>
</head>
<body>
<div class="box01">box01</div>
<div class="box02">box02</div>
<div class="box03">box03</div>
<div class="box04">box04</div>
<div class="box05">box05</div>
<div class="box06">box06</div>
</body>
</html>