1
I have a div with class footer when I’m going to style it in css and leave it on display: None; it disappears so far so good. but wanted when used css to hide that div it does not suffer any effect. Ex:
.footer {
display:none !important;
}
even with the tag !Important i want this class not to be altered. I’ve tried it with a javascript tag.
document.getElementById('.footer').style.display="block";
And with Jquery
$('.footer').css('display','block');
Summing up I want to force javascript to this class not suffer effects.
Your doubt doesn’t make much sense, because if you don’t want it to change, just don’t make it.
– Luiz Felipe
@Luizfelipe thought the same thing
– PauloHDSousa
the goal is that whoever owns my template can not modify them
– HellFive Osborn
This is a good resource to make available in CSS 4 (if it is not already finished). Good opportunity for you to contribute in this implementation in the new version =)
– Diego Rafael Souza
once in the browser the screen belongs to the user can do whatever you want
– Leandro Angelo