Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS로 전체 페이지 배경 이미지를 만드는 방법은 무엇입니까?

<시간/>

다음은 CSS로 전체 페이지 배경 이미지를 만드는 코드입니다 -

예시

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body, html {
   height: 100%;
   margin: 0;
}
.background {
   background-image: url("https://images.pexels.com/photos/1424246/pexels-photo-1424246.jpeg?  
      auto=compress&cs=tinysrgb&dpr=1&w=1000");
   height: 100%;
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
}
</style>
</head>
<body>
<div class="background"></div>
</body>
</html>

출력

위의 코드는 다음과 같은 출력을 생성합니다 -

CSS로 전체 페이지 배경 이미지를 만드는 방법은 무엇입니까?