배경(background)은 콘텐츠의 배경을 정의한다.
단축 속성으로써 색상, 이미지, 반복 등 다양한 하위 속성을 정의할 수 있다.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>HTML 문서</title>
<style>
div{
box-sizing: border-box;
width:500px; height:500px;
border: 1px solid red;
/* background-color: red; */
background-image: url(./images/study.jpeg);
background-repeat: no-repeat;
background-position: center;
background-size: contain;
/* background : no-repeat url(./images/study.jpeg); 이렇게도 가능 */
}
</style>
</head>
<body>
<div> 율무</div>
</body>
</html>