Visiblity display

 <!DOCTYPE html>

<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
div{
visibility: hidden;
}
</style>
</head>
<body>
<p>
A property called visibility allows you to hide an element from view. You can use
this property along with JavaScript to create very complex menu and very
complex webpage layouts.
<div>
<h1>Computer</h1>
</div>
You may choose to use the visibility property to hide error messages that are
only displayed if the user ne
</p>
</body>
</html>

Comments

Popular posts from this blog