Please enable Javascript to correctly display the contents on Dot Net Tricks!
 
Become an Expert in C#, .NET, MVC, JAVA, PHP, AngularJS, Hadoop, Android, iphone, Testing etc.
by Joining our Training Programs and Take Your Career to the Next Level! To know more make a call on +91 98 71 749695

CSS Inline, block and none display style

Posted By : Shailendra Chauhan, 14 Jun 2012
Updated On : 10 Jul 2012
Total Views : 5,452   
 
Keywords : inline block elements, css display style, html elements display style, inline block display style example pdf

During creation of an HTML page using CSS, it is essential to know the HTML elements display behavior. HTML elements have three display style options inline, block and none. Each option has its significant in the designing of HTML page.

The basic difference among these display options is very important to know in order to use CSS efficiently. In this article, I will expose the basic difference among these display options.

  1. Block

    1. Block display elements makes a separate block with a new line before and after.

    2. It takes the full available width based on its parent element or container.

    3. Using CSS we can fix height and width of block elements.

    4. It can have other inline or block elements.

    5. <div>, <h1>…<h6>, <p>, <ul>, <ol>, <dl>, <li>, <dt>, <dd>,<table>, <blockquote>, <pre>,<form> are displayed as block naturally.

  2. Inline

    1. Inline display elements stay with the flow of the document and don’t force the new line.

    2. It takes the width as it needs.

    3. Using CSS we can’t fix height and width of inline elements.

    4. It can have only inline elements.

    5. <span>, <a>, <strong>, <em>, <img />, <abbr>, <acronym>, <br>,<input> are displayed as inline naturally.

  3. None

    1. Some tags, like <meta />,<script> and <style> are not visible naturally.

We can change the display style of block elements to inline and vice-versa.

Examples of block and inline elements

  1. A paragraph (html block element <p>)

    Paragraph width will be equal to the container width
    Paragraph height will be equal to its content.

  2. A paragraph with fixed height and width

    The width will be equal to 450px (width:450px;), and the height will be equal to 150px (height:150px;).

  3. A paragraph converted into an inline element using display:inline;

    This paragraph is now an inline element. The width and height taken by it will be acc. to its content.

  4. An anchor tag (html inline element <a>)

    The width and height taken by it will be acc. to its content.

  5. An anchor tag with fixed height and width(to show that it does not work)

    We can’t set a fixed width and/or height to an inline element.

  6. An anchor tag converted into a block element using display:block;

    This anchor tag is now a block element.
    The width will be equal to the its container.
    The height will be equal to the its content.

Summary

In this article I try to expose the display property of elements with simple examples. I hope after reading this article you will be able to make a good html design. I would like to have feedback from my blog readers. Please post your feedback, question, or comments about this article.

 
Further Reading
 
About the Author
Hey! I'm Shailendra Chauhan full-time author, consultant & trainer. I have more than 6 years of hand over Microsoft .NET technologies and other web technologies like JavaScript, AngularJS, NodeJS etc. I am an entrepreneur, the founder & chief editor of www.dotnet-tricks.com and www.dotnettricks.com. I am author of most popular e-books for technical Interview on ASP.NET MVC Interview Questions and Answers & AngularJS Interview Questions and Answers & LINQ Interview Questions and Answers.
I have delivered 100+ training sessions to professional world-wide over Microsoft .NET technologies such C#, ASP.NET MVC, WCF, Entity Framework and other mobile technologies such Ionic, PhoneGap, Cordova. Read more...
 
Free Interview Books
 
SUBSCRIBE & FOLLOW US
 
Browse By Category
 
 
Like us on Facebook