display properties code example

Example 1: 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*/

Example 2: css block layout

/******************* BASIC BLOCK DISPLAY **********************/

/**************** Block display Elements  *********************/
/*Elements that block any other elements from being in the 
same line. You can change the width from being the maximum 
width of the page, but you can´t put elements side by side */
tag_name {
    display: block;
}

/*Exemple of default block display elements:*/
<h1> ... </h1>
<p> ... </p>


/**************** Inline display Elements  *********************/
/*They are the type of blocks that only take up the minimum space 
required (both in width and height). You can place these types of 
blocks side by side (on the same line) but you cannot change their 
dimensions */

tag_name {
    display: inline;
}

/*Exemple of default inline display elements:*/
<spans> ... </spans>
<img> ... </img>
<a> ... </a>


/************* Inline-block display Elements  *****************/
/*They take the best of the two other types above. You can put 
elements side by side (on the same line) and you can change this 
block width and height */

tag_name {
    display: inline-block;
}


/***************** None display Elements  ********************/
/*This block will never appear on your webpage and will never 
interact with the other elements (it doesn't take up space) */

tag_name {
    display: none;
}

Example 3: display :table cell

<table>
    <tr>
        <td></td>
        <td></td>
        <td></td>
    </tr>
    <tr>
        <td></td>
        <td></td>
        <td></td>
    </tr>
</table>

Tags:

Html Example