CSS常用属性

  • font-size   //字体大小
  • font-weight:bold;  //字体粗细
  • font-style:italic;   //文字斜体
  • font-family:arial;    //字体
  • color:black/#000/rgb(0,255,255);   //设置字体颜色,如透明色:transparent
  • border:1px solid black;   //盒子边框分解为border-width   border-style  border-color
  • border-top/border-left/border-right/border-bottom
  • border-radius:15px;   //圆角
  • text-align:left;   //文本对其方式
  • line-height:    //单行文本所占高度,单行文本垂直居中:line-height=height
  • text-indent:2em;   //缩进两个文本的距离  1em=1 font-size
  • text-decoration:line-through(中划线)/underline(下划线)/overline(上划线)/none(无效果);    //文本装饰
  • cursor:pointer/help/resize/copy/move;    //当鼠标移上时显示的图标
  • opacity:0.5;   //透明度50%
  • background-img:url();   //设置背景图片
  • background-size    //背景图片大小设置
  • background-repeat:repeat/no-repeat;  //当图片铺不满背景时候的处理
  • background-position   //背景图片添加的位置
  • white-space:nowrap;  //强制性文字不换行
  • overflow:hidden;  //溢出部分隐藏
  • text-overflow:ellipsis;  //溢出部分用...展示
  • text-indent   //首行缩进

你可能感兴趣的:(CSS)