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

CSS에서 배경을 설정하는 약식 속성

<시간/>

background 속성을 사용하여 배경 이미지 위치, 반복 등과 같은 모든 배경 속성을 한 번에 설정할 수 있습니다.

예시

<html>
   <head>
   </head>
   <body>
      <p style = "background:url(/images/pattern1.gif) repeat fixed;">
         This parapgraph has fixed repeated background image.
      </p>
   </body>
</html>