CSS3 modication:

常用

  • border-radius 边框半径
  • box-shadow 盒子阴影
  • text-shadow 文字阴影
  • word-wrap 文字换行
  • user-select 允许用户选择元素
  • background-origin 背景开始位置 content, padding, border
  • background-clip 背景裁剪 content, padding, border
  • background-size 背景大小 content, cover, height, width
  • @font-face 自定义字体 font-family: ‘xxx name’, src: url(‘font/path’), src可以有多个, font-weight, font-style

CSS透明度

  • background: rgba(0,0,0,0.5)
  • opacity: 0.5
  • filter: alpha(opacity=80) 用于 <= ie8, 与opacity一起使用
  • background-color: tranparent;

##

  • translate