3
I’m using the WordPress
, and my current template has some CSS
that are defacing a page that I am mounting with a Builder page.
I was wondering if you could block these CSS
on this specific page without affecting the other.
Exemplifying:
p{word-wrap: break-word;}
via style.css
for all pages
I want to disable the p{word-wrap: break-word;}
on my specific page.
How do I do that?
Can put a
<style>
in<head>
of the page with this code below thestyle.css
that will ignore the code.– Sam
What if the CSS is
p{margin: 20px;}
? How I annul themargin
?– Gustavo
According to the w3c, the p tag uses the following styles (by default):
p {
 display: block;
 margin-top: 1em;
 margin-bottom: 1em;
 margin-left: 0;
 margin-right: 0;
}
To modify them just proceed in the same way as the previous one. In the mentioned link you can find the default styles of each html tag.– Juven_v