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