w3schools html display property code example
Example: html display property
p {display: none;} /*This will disappear element on screen*/
p {display: inline;} /*This will allow items to sit in-front of it*/
p {display: block;} /*This will block other items from sitting in-front of it*/
p {display: inline-block;} /*This will allow you to change the width and sit in-front elements*/