<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Display Atribute</title>
<style>
.block {
display:block;
}
.none {
display:none;
}
.hidden {
visibility:hidden;
}
</style>
</head>
<body>
<p>The page contain 5 lines!</p>
<p>The first one is normal, the second has block attribute - display normal. </p>
<p>The third line has a <strong>display:none;</strong> and therfor <strong>will not show and no space
taken.</strong></p>
<p>The forth line has <strong>visibility:hidden</strong>; (use visible to show)
and therefor takes space</p>
<hr>
<p>First line</p>
<hr>
<p class="block">Second Line</p>
<hr>
<p class="none">Third Line</p>
<hr>
<p class="hidden">Forth Line</p>
<hr>
<p>Fifth Line</p>
<hr>
</body>
</html>