Use specific tag when writing CSS

Or I’ll get un-easy find bugs. Here is an example:
I want to seperate the color and layout of CSS definition, so I can easily add different styles. So I have:
In color.css
border: red;
}
And in layout.css
border: 1px;
}
Then in style.css
@import "layout.css";
However, when the page is rendered, the table border still get the inhired color, not the red I […]

Close
E-mail It