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

CSS에서 배경 속성 사용

<시간/>

배경 속성은 이미지, 위치, 반복 등과 같은 다른 배경 속성의 수를 지정하는 약어로 사용됩니다.

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