简体   繁体   中英

My Custom.css not working

When I inspect a web page I encounter an section element as section#sp-bottom

In the styles console, I see

#sp-bottom (
   margin: 10px 0px 0px 0px;
}

When I change the above 10px to 0px , I can see the page margin of 10px disappear.

Then in my custom.css of the template, i added

#sp-bottom {
   margin: 0px 0px 0px 0px;
}

But after clearing cache the page & browsing history, i still shows the 10px

Some please teach.

Try increasing more specificity by adding the tag name( section ) to the css selector,

section#sp-bottom {
   margin: 0;
}

你可以试试这个。

section#sp-bottom{ margin:0px;}

You might want to see this question .

I feel that your trying to edit your css through the browser. The content is in the memory therefore when you clear the cache it resets.

Try this

#sp-bottom {
   margin:0px !important;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM