1
I’m trying to use the property display: none
in the element button
, but it doesn’t work. If I put it in the class it works, e.g.:
.btn {
display: none;
}
But I put myself in the element button
doesn’t work:
button {
display: none;
}
So the question is how do I hide the elements button
without having to use class?
Of course it works... https://jsfiddle.net/Sergio_fiddle/be5mcp28/ you can create an example of your problem?
– Sergio
kkkk Oh, I must have done something wrong here! I’ll check, thanks Sergio!
– gustavox
Sergio, I was in conflict, so it didn’t work, with the
!important
suggested in the answer below worked...– gustavox