배경 이미지 사용 이미지를 가로 및 세로로 반복하는 속성입니다. 다음 코드를 실행하여 배경 이미지를 반복할 수 있습니다.
예시
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-image: url("https://www.tutorialspoint.com/videotutorials/images/tutor_connect_home.jpg");
}
</style>
</head>
<body>
<h1>Background Image</h1>
</body>
</html>