CSS (ウィンク) で 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;
}