Ocultar elemento usando CSS
#tinynav1
{
display:none
}
PHPMarvel
#tinynav1
{
display:none
}
.classname {
display: none;
}
You can hide an element in CSS using the CSS properties
display: none or visibility: hidden .
display: none removes the entire element from the page
and mat affect the layout of the page.
visibility: hidden hides the element while keeping the space the same.
display:none;