How can I more efficiently write this piece of code which aims to style two features in my streets layer (major roads and major road ramps) the exact same way.
#tor_centreline [FCODE=201200] {
line-width: 0.5;
line-color: lightgray;
}
#tor_centreline [FCODE=201201] {
line-width: 0.5;
line-color: lightgray;
}
When I input the code as...
#tor_centreline [FCODE=201200],[FCODE=201201] {
... I break my map because I believe the second [FCODE=""] is not linked to the #tor_centreline... such that it searches all of my layers for [FCODE=""] and when it finds a layer with no "FCODE" attribute field I receive an error.