在CSS中使用背景属性

背景属性被用作速记指定的其他背景性能如图像,位置,重复数等

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