search

HTML Display Block

Sep 04, 2024 pm 04:39 PM
htmlhtml5HTML TutorialHTML PropertiesHTML tags

HTML Display Block is one of HTML’s most important position properties, responsible for placing block-level elements into the display block. While designing a webpage, arranging elements properly in a specific position is always important. Setting a proper position for the layout is one of the most critical tasks. By default, it took the display property as inline. This will always start with a new line and stretch elements from left to right to occupy full-width space. One can set height and width properties to the block-level elements, and it is possible to include other inline or block elements within it.

Syntax:

  • Each and every element is placed on the webpage at a specific location. The property value helps us to define how it should be displayed on the webpage; it will be as follows:
display :block;
  • The syntax for displaying it with position value is as follows:
position :value;
  • In the above syntax, the position is the placement area where actual elements will place. Into the value, we can use a block for displaying block-level elements. So it will be going to use like :
position :block;
  • That HTML Block contains elements like
    ,

    ,

    , as well as one can use inline elements within the display block.
  • With the help of CSS, one can define display property with some specified values like :
  • display: [<display-outside> , <display-inside>] [<display listitem>, <display>, <display-box>]</display-box></display></display></display-inside></display-outside>

    There are different display values for HTML as follows:

    1. none value

    {
    display:none;
    }

    2. inline value

    {
    display:inline;
    }

    3. block value

    {
    display:block;
    }

    4. inline-block value

    {
    display : inline- block;
    }

    All the above values help us to set and control the layout; most of the time, values for the layout are either inline or block. The display block starts with a new line covering the container’s full width to put elements on the web page in the HTML display block. Block-level elements don’t allow you to use other block elements within them.

    How does Block Display in HTML?

    • This format uses boxes placed one after another in a vertical direction. It will start from the top of the containing block.
    • Those blocks are managed with vertical distance between them using equivalent space, known as margin property in the CSS.
    • In this display block formatting process, every box’s left outer side is attached to the left side of its containing block. The same thing will happen with the right edges of containing blocks.
    • Another way to define a display block in HTML is to put block elements down in the horizontal direction, as in English. It will arrange the layout vertically below one by one.
    • As we are using margins, it helps to create space between two boxes or elements, which will separate elements from each other.
    • Block-level elements will occupy all the space in an inline direction, separating our elements into their containing block.
    • As we know, we can set height and width properties to the layout in it, so it helps to put blocks below each other one by one.

    Examples of HTML Display Block

    Below are the different examples given.

    Example #1

    This is a normal example showing how the HTML display block property going to be used in the HTML code is as follows:

    Code:

    
    <style>
    .block_demo{
    border: 2px solid red;
    width:50%;
    display:block;
    }
    </style>
    
    <h4 id="List-of-Color-Names">List of Color Names:</h4>
    <div class="block_demo">
    <ul>
    <li>Red</li>
    <li>Green</li>
    <li>Blue</li>
    <li>Orange</li>
    <li>Purple</li>
    <li>Pink</li>
    </ul>
    </div>
    <h4 id="List-of-Mobile-Brands">List of Mobile Brands:</h4>
    <div class="block_demo">
    <ol>
    <li>Apple</li>
    <li>SAMSUNG</li>
    <li>NOKIA</li>
    <li>MOTOROLA</li>
    <li>LENOVO</li>
    <li>OPPO</li>
    </ol>
    </div>
    
    

    Output:

    HTML Display Block

    Example #2

    In this example, we are going to create 3 equal blocks and show data in between them using the Display block as follows:

    Code:

    
    
    <title>HTML Display box</title>
    <style>
    #block1{
    height: 100px;
    width: 400px;
    background: orange;
    display: block;
    }
    #block2{
    height: 100px;
    width: 400px;
    background: white;
    display: block;
    }
    #block3{
    height: 100px;
    width: 400px;
    background: lightgreen;
    display: block;
    }
    .flag {
    margin-left:20px;
    font-size:40px;
    font-weight:bold;
    color:blue;
    }
    .demo {
    font-size:20px;
    margin-left:20px;
    }
    .main {
    margin:50px;
    text-align:center;
    border: 1px solid black;
    }
    </style>
    
    
    <div class="flag">National Flag of India</div>
    <div class="demo">Meaning of National Flag</div>
    <div class="main">
    <div id="block1">The saffron color of the flag indicates a symbol of courage and sacrifice. This is also known as Bhagwa color. It’s for renunciation . It represents fire. </div>
    <div id="block2">The white color of our flag represents honesty, peace, purity. It focus on importance of maintaining peace in the country.
    <img  src="/static/imghwm/default1.png" data-src="AC.png" class="lazy"   style="max-width:90%" alt="HTML Display Block" >
    </div>
    <div id="block3">The green color represents faith and chivalry. It’s for nature. It is a symbol of prosperity and life. It also used for representing auspiciousness of the Indian Motherland..</div>
    </div>
    
    

    Output:

    HTML Display Block

    Example #3

    This example includes elements like Header, footer, section, sidebar, etc. are as follows:

    Code:

    
    
    <title>HTML Display Block</title>
    <style>
    body {
    margin: 0;
    }
    .header {
    padding: 10px;
    text-align: center;
    background-color:cadetblue;
    color: white;
    }
    .navbar {
    overflow: hidden;
    background-color:darkkhaki;
    }
    .navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 10px 10px;
    }
    .navbar a.right {
    float: right;
    }
    .navbar a:hover{
    background-color: #eee;
    color: black;
    }
    .row {
    display: flex;
    flex-wrap: wrap;
    }
    .section {
    flex: 10%;
    background-color: #f1f1f1;
    padding: 20px;
    }
    .main {
    flex: 80%;
    background-color: white;
    padding: 20px;
    }
    .footer{
    padding:3px;
    background-color:darkcyan;
    width:100%;
    }
    </style>
    
    
    <div class="header">
    <h1 id="HEADER-of-Webpage"> HEADER of Webpage</h1>
    </div>
    <div class="navbar">
    <a href="#">Home</a>
    <a href="#">About US</a>
    <a href="#">Services</a>
    <a href="#">Contact</a>
    <a href="#" class="right">SignUp</a>
    </div>
    <div class="row">
    <div class="section">
    <h2 id="Sidebar-comes-here">Sidebar comes here</h2>
    </div>
    <div class="main">
    <h2></h2>
    <p></p>
    <br>
    <div class="row">
    <div class="section" style="margin-top:-50px;">
    <h2 id="Example-of-section">(Example of section)</h2>
    </div>
    </div>
    </div>
    <div class="footer">
    <p>Footer</p>
    </div>
    </div>
    
    

    Output:

    HTML Display Block

    Conclusion

    From all the above information, we learned that the HTML display block property in HTML helps us to set our layout in the proper structure. Those blocks in the layout can be put in either vertical or horizontal directions, one after another. It include elements like

    ,
    ,
    .
    ,
    ,

    -

    , etc.

The above is the detailed content of HTML Display Block. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
HTML: The Structure, CSS: The Style, JavaScript: The BehaviorHTML: The Structure, CSS: The Style, JavaScript: The BehaviorApr 18, 2025 am 12:09 AM

The roles of HTML, CSS and JavaScript in web development are: 1. HTML defines the web page structure, 2. CSS controls the web page style, and 3. JavaScript adds dynamic behavior. Together, they build the framework, aesthetics and interactivity of modern websites.

The Future of HTML: Evolution and Trends in Web DesignThe Future of HTML: Evolution and Trends in Web DesignApr 17, 2025 am 12:12 AM

The future of HTML is full of infinite possibilities. 1) New features and standards will include more semantic tags and the popularity of WebComponents. 2) The web design trend will continue to develop towards responsive and accessible design. 3) Performance optimization will improve the user experience through responsive image loading and lazy loading technologies.

HTML vs. CSS vs. JavaScript: A Comparative OverviewHTML vs. CSS vs. JavaScript: A Comparative OverviewApr 16, 2025 am 12:04 AM

The roles of HTML, CSS and JavaScript in web development are: HTML is responsible for content structure, CSS is responsible for style, and JavaScript is responsible for dynamic behavior. 1. HTML defines the web page structure and content through tags to ensure semantics. 2. CSS controls the web page style through selectors and attributes to make it beautiful and easy to read. 3. JavaScript controls web page behavior through scripts to achieve dynamic and interactive functions.

HTML: Is It a Programming Language or Something Else?HTML: Is It a Programming Language or Something Else?Apr 15, 2025 am 12:13 AM

HTMLisnotaprogramminglanguage;itisamarkuplanguage.1)HTMLstructuresandformatswebcontentusingtags.2)ItworkswithCSSforstylingandJavaScriptforinteractivity,enhancingwebdevelopment.

HTML: Building the Structure of Web PagesHTML: Building the Structure of Web PagesApr 14, 2025 am 12:14 AM

HTML is the cornerstone of building web page structure. 1. HTML defines the content structure and semantics, and uses, etc. tags. 2. Provide semantic markers, such as, etc., to improve SEO effect. 3. To realize user interaction through tags, pay attention to form verification. 4. Use advanced elements such as, combined with JavaScript to achieve dynamic effects. 5. Common errors include unclosed labels and unquoted attribute values, and verification tools are required. 6. Optimization strategies include reducing HTTP requests, compressing HTML, using semantic tags, etc.

From Text to Websites: The Power of HTMLFrom Text to Websites: The Power of HTMLApr 13, 2025 am 12:07 AM

HTML is a language used to build web pages, defining web page structure and content through tags and attributes. 1) HTML organizes document structure through tags, such as,. 2) The browser parses HTML to build the DOM and renders the web page. 3) New features of HTML5, such as, enhance multimedia functions. 4) Common errors include unclosed labels and unquoted attribute values. 5) Optimization suggestions include using semantic tags and reducing file size.

Understanding HTML, CSS, and JavaScript: A Beginner's GuideUnderstanding HTML, CSS, and JavaScript: A Beginner's GuideApr 12, 2025 am 12:02 AM

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

The Role of HTML: Structuring Web ContentThe Role of HTML: Structuring Web ContentApr 11, 2025 am 12:12 AM

The role of HTML is to define the structure and content of a web page through tags and attributes. 1. HTML organizes content through tags such as , making it easy to read and understand. 2. Use semantic tags such as, etc. to enhance accessibility and SEO. 3. Optimizing HTML code can improve web page loading speed and user experience.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Will R.E.P.O. Have Crossplay?
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools