I am trying to use the display: none
property on the button
element, but it does not work. If I put it in the class it works, eg:
.btn {
display: none;
}
But if I put the element button
it does not work:
button {
display: none;
}
So the question is how do I hide the button
elements without using a class?