0
HTML--Hiding Text, buttons, links etc.
My wep page- I was wondering, if able, if it is possible to hide text, buttons, image, video and audio with HTML? (Subj-Web page & site building)
4 ответов
+ 3
Yeah.
I dont know what your code looks like. But we (I) use the following to hide elements.
And you’re probably looking for one of the following:
element{
display: none;
}
.element{
opacity: 0
}
.element{
visibility: hidden
}
+ 1
Simply with CSS visible : false
+ 1
Just comment it out within <!-- and -->
Like this
<!-- <button> My button </button> -->
0
Thank you Brother.