For one project, I've to use a defined stylesheet. I cannot edit it, I've to take it as it comes.
But, there is some styles which aren't adequate for this website(e.g. margin).
I've too create my own CSS file which override some of those properties.
One example, if I've this:
<div id="main-content" class="container">My test text</div>
And the following css instruction in a css file:
div.container{margin:5px}
div#main-content{margin-left:235px; ...}
I would like in MY css to define that the div#main-content hasn't this margin but it's default value.
How could I do it? I don't want to do a margin-left:0px
because if I've a global style(saying that all div.container
should have a 5px margin, I would like it applies to my previous div. And thoses data could change.