1
fim8 2011-02-09 21:14:39 +08:00
什么意思?
|
2
infinte OP 比如有一条
.sl { -moz-border-radius: 3px; -webkit-border-radius: 3px; padding: 3px; font-size: 14px; border: 1px solid #ccc; width: 320px; font-family: "Helvetica Neue", "Luxi Sans", "DejaVu Sans", Tahoma, "Hiragino Sans GB", STHeiti !important; } border-radius 建议加上没有前缀的版本(border-radius: 3px)来优化 opera和 ⑨ 下的效果 |
3
fim8 2011-02-10 02:47:22 +08:00
最好兼顾。
|
4
yyfearth 2011-02-10 08:21:08 +08:00
我一般都是:
-webkit-border-radius: 4px; -moz-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; 多整齐~! |
5
ilexswam 2011-02-10 09:00:07 +08:00
opera似乎只支持border-radius,而不支持border-top-left-radius之类的?
|