4

我在对象上使用边框。喜欢

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

我可以用速记写这个吗?

4

1 回答 1

8

这只节省了一行:

border: 1px solid #000;
border-top: 0;
于 2010-05-28T13:41:11.013 回答