Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

hide element css

.your-class-name{
	display: none; // block or inline-block
}
.your-class-name{
	visibility: hidden; // visible
}

display - completely removes the element from the document
visibility - makes the block invisible on the screen
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #hide #element #css
ADD COMMENT
Topic
Name
8+5 =