I have two css files:
A main file (main.css)
A specific page file (page5.css). My page.css contains main.css (@import url(main.css));)
Just re-define it somewhere after your @import
directive:
#content { height: 456px }
for identical CSS selectors, the latter rule overwrites the former.
The other answers did not help me on a more complex page.
Let's suppose you want something different on page X.
This works for me.
You don't even need a separate CSS file necessarily. You can add classes to your body for various purposes, identifying page or page type being one of them. So if you had:
<body class="page5">
Then in your CSS you could apply:
.page5 #content {
height: XXXpx;
}
And it would only apply to that page as long as it occurs after your main #content
definition.
In page5.css
, simply re-define the height.
page5.css
#content {
height:400px;
}