I have an external css file that applies a 35px add-on to my div content. All my html pages load inside this div, but for one of them I want to use 0 padding-right.
I tried the built-in css, applying it directly on the body of this page, and also using! important, but nothing worked.
What am I doing wrong?
index.html
<div id="content"><?php include "page.html"?></div>
main.css:
#content{ margin-top: 303px; padding: 35px; z-index:1; }
page.html:
<body style="padding:0px;">
source share