.classA, .classB, .classC {
border-color: #CCC;
}
.classA {
border-width: 1px;
border-style: solid;
}
...
But you can’t use the short-hand syntax to define the border anymore.
.classA, .classB, .classC {
border-color: #CCC;
}
.classA {
border-width: 1px;
border-style: solid;
}
...
But you can’t use the short-hand syntax to define the border anymore.