This has got to be easy, but I can't quite seem to get it right and I can't find anything online to help out.
Here is my sample CSS
#sidebar #links ul {
...
}
#sidebar #authors ul {
...
}
However the CSS declared for each ul is the same. So I'd like to merge that into one piece of CSS like this
#sidebar #links, #authors ul {
...
}
But that doesn't work!
Anyone know what the correct syntax is?
JB