css3标签

-moz代表firefox浏览器私有属性

-ms代表ie浏览器私有属性

-webkit代表chrome、safari私有属性

-o代表opera私有属性


border-radius:2em;

向div元素添加圆角边框,这是一种缩小写法,等价于:

border-top-left-radius:2em;

border-top-right-radius:2em;

border-bottom-right-radius:2em;

border-bottom-left-radius:2em;

分别设置了边框的上左,上右,下右,下左的四个方向角为园角。当然也可以设置百分比%。


border-radius:2em 1em 4em/0.5em 3em;

想设置其他的形状也可以这样设置,等价于:

border-top-left-radius:1em 4em;

border-top-right-radius:1em 3em;

border-bottom-right-radius:4em 0.5em;

border-bottom-left-radius:2em 1em;

css3让框架等属性更加自由。这段可以设置框架的各个位置。