用速记写边框!

时间:2010-05-28 13:39:49

标签: html css shorthand

我在对象上使用边框。 像

.box{
    border-left:solid 1px #000;
    border-right:solid 1px #000;
    border-bottom:solid 1px #000;
    width:50px;
    height:50px;
}

我可以用速记写这个吗?

1 个答案:

答案 0 :(得分:8)

这只保存一行:

border: 1px solid #000;
border-top: 0;