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

CSS에서 background-image 속성 사용

<시간/>

배경 이미지 속성은 요소의 배경 이미지를 설정하는 데 사용됩니다.

예시

다음 코드를 실행하여 background-image 작업 방법을 배울 수 있습니다. 속성:

<html>
   <head>
      <style>
         body {
            background-image: url("/latest/inter-process-communication.png");
            background-color: #cccccc;
         }
      </style>
      <body>
         <h1>Hello World!</h1>
      </body>
   </head>
<html>