码迷,mamicode.com
首页 > Web开发 > 详细

css样式属性

时间:2017-10-10 16:33:22      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:width   idt   背景图   设置   no-repeat   图片   pre   左右   背景   

1、背景

background-color:背景色

 <div style="width:50px; height:50px; background-color:#F00;">

技术分享

background-image:背景图

<body>
   <div style="width:100px; height:100px; background-color:#6C3; background-image:url(lx1.png);">
    gyvgvgv
     </div>
</body>

技术分享

background-repeat:no-repeat不平铺;repeat平铺;repeat-x横向平铺;repeat-y纵向平铺

<body>
    <div style="width:100px; height:100px; background-color:#6C3; background-image:url(lx1.png); background-repeat:no-repeat">
    <!--no-repeat不平铺;repeat平铺;repeat-x横向平铺;repeat-y纵向平铺-->
     </div>
</body>

技术分享

background-position:调整背景图片位置(repeat:no-repeat);center居中;

<body>
    <div style="width:100px; height:100px; background-color:#6C3; background-image:url(lx1.png); background-repeat:no-repeat; background-position:center">
     </div>
</body>

技术分享

background-position当设置左右必须有上下位置才起作用

<body>
    <div style="width:100px; height:100px; background-color:#6C3; background-image:url(lx1.png); background-repeat:no-repeat; background-position:left 10px top 10px">
     </div>
</body>技术分享

技术分享

 

css样式属性

标签:width   idt   背景图   设置   no-repeat   图片   pre   左右   背景   

原文地址:http://www.cnblogs.com/navyouth/p/7645345.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!