我正在尝试在我的 CSS (wink) 中练习 DRY,但我一直坚持如何解决这个问题。
我如何减少这种情况:
table.shipmentItemList TD.title,
table.shipmentItemList TD.author,
table.shipmentItemList TD.options {
font-size: 1.0em;
font-weight: normal;
}
对于这样的事情:
table.shipmentItemList TD.title, TD.author, TD.options {
font-size: 1.0em;
font-weight: normal;
}
或者更好的是:
table.shipmentItemList TD .title, .author, .options {
font-size: 1.0em;
font-weight: normal;
}