不用缩写是怎么样的,如 li{border-bottom:1px solid #ccc}
不缩写形式是:
li{
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #ccc;
}
但是一般建议缩写,简单易懂,便于理解和修改
li{
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #ccc;
}