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

CSS를 사용하여 가로 및 세로로 배경 이미지 반복

<시간/>

배경 이미지 사용 이미지를 가로 및 세로로 반복하는 속성입니다. 다음 코드를 실행하여 배경 이미지를 반복할 수 있습니다.

예시

<!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>