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

CSS基本属性

时间:2018-05-16 15:36:07      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:style   AC   tom   css   ott   position   width   基本   不重复   

背景属性

  背景颜色

div{
    height: 200px;
    width: 200px;
    background-color: #ccc;
}

  背景图片

div{
    height: 200px;
    width: 200px;
    background-image: url(img/bg.png);
}

  背景重复

div{
    height: 200px;
    width: 200px;
    background-image: url(img/bg.png);
    background-repeat: repeat-x;
    /*
       不添加此属性,则纵向横向都重复
       repeat-x 横向重复
       repeat-y 纵向重复
       no-repeat 不重复
    */
}

  背景位置

background-position: x y;
/*xy分别表示x轴位置和y轴位置*/

/*
横向(left,center,right)
纵向 (top, center,bottom)
*/

 

CSS基本属性

标签:style   AC   tom   css   ott   position   width   基本   不重复   

原文地址:https://www.cnblogs.com/heboan/p/9045515.html

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