Home Web Front-end CSS Tutorial CSS block-level tags, inline tags, and inline block tag conversion (2)

CSS block-level tags, inline tags, and inline block tag conversion (2)

Feb 22, 2017 pm 01:34 PM

HTMLClassification of tags

When talking about tag classification, as beginners, when we first use tags, we will find that some attributes are on some tags Does not work, such as width, height, horizontal centering, etc. In fact, the use of this attribute only works when used on block-level tags. Personally, I think this is something that beginners can easily overlook, so I wrote it down!

First of all, we can divide the HTML tags into block-level tags, in-line tags, and in-line block tags according to the different displays; now we will introduce them respectively. .

Block-level tags

## Features: is on one line, It takes effect for the settable attribute values ​​​​of height, width, line height, and top and bottom margins; if no width is given, the block-level element defaults to the width of the browser, which is 100% width;

Typical block-level tags are:

, h series,

  • ,
    ,
    ,

    ,

    ,

      Inline tag

      ##Features:

      can be multiple Each label exists in one row. You cannot directly set the height, width, row height, and top and bottom margins of the in-line label. The width and height are completely dependent on the content! Typical inline tags are: , , , , , , ,

      ##Inline block tag:##Features: Combined inline and block-level features , not only can it take effect on the width and height attribute values, but also multiple labels can be displayed in one line;

      Typical inline labels are:

      CSS block-level tags, inline tags, and inline block tag conversion (2)

      ,

      Then some students will think, can’t I control the width and height of span or font? Yes, let’s put aside floating and positioning this time, and let’s convert them to each other through the display attribute:

      1. Convert block-level tags to inline tags: display: inline;

      2. Convert inline tags to block-level tags: display:block;

      3. Convert to inline block tags: display:inline-block;

      As long as you use the display attribute for the corresponding label and take the corresponding value, you can convert the display modes to each other.

      Please see the following example:

      1: Convert inline tags to block-level tags

      <!DOCTYPE html>
      <html>
          <head>
              <title>行内标签转块级标签</title>
              <style type="text/css">
                  a{
                      width: 200px;
                      height: 200px;
                      background-color: red;
                      display: block; 
                  }
              </style>
          </head>
          <body>  <!--正常情况a标签作为一个行内标签你设置长和宽是没有效果的-->
              <a href="https://www.baidu.com">百度</a>
          </body> <!--而当你用display: block;代表行内标签转为块级标签-->
      </html>
      Copy after login

      The running results are as follows; clicking on any area in red can jump to Baidu, so it can expand the link range.


      2: CSS block-level tags, inline tags, and inline block tag conversion (2)Convert inline tags to inline block tags

      Already mentioned above Let me emphasize the difference between inline block-level tags and block-level tags: both block-level tags and in-line block-level tags can be set in length and width, but block-level tags need to be set after you set them

      It is automatically wrapped. You cannot put anything else on this line. Inline block-level tags can place multiple inline tags on the same line. I have a case to explain specifically.

      <html>
          <head>
              <title>块级和行内块级</title>
              <style type="text/css">
                  a{
                      width: 100px;
                      height: 100px;
                      background-color: green;
                      display: inline-block;  
                  }
                  p{
                  width:100px;
                  height:100px;
                 background-color: red;
                 margin-top:10px;  /* margin-top是来设置上下两个块的上下间距,关于盒子下一节我单独来讲*/
                 }
              </style>
          </head>
          <body>
              <a href="https://www.baidu.com">百度</a>   <!--通过 display: inline-block;就可以将行内标签转为行内块级标签-->
              <a href="https://www.baidu.com">百度一下</a>
              <p>我是p1</p>   <!--这个是一般的块级标签,会上下分行-->
              <p>我是p2</p>
          </body>
      </html>
      Copy after login

      Run result:

      CSS block-level tags, inline tags, and inline block tag conversion (2)

      3. Convert block-level tags to inline tags

       1 <!DOCTYPE html> 2 <html> 3     <head> 4         <title>块级标签转行内标签</title> 5         <style type="text/css"> 6             p{ 7                 width: 100px; 8                 height: 100px; 9                 background-color: red;10                 display: inline;11             }12         </style>13     </head>14     <body>15          <p>谷歌</p>  <!--按道理p是块级可以设置长和宽当通过display: inline;它已经是行内标签了,所以长和宽失效-->16          <p>http://www.php.cn</p>17     </body>18 </html>
      Copy after login


      The effect is as follows:

      CSS block-level tags, inline tags, and inline block tag conversion (2)

      I will write about block-level tags, inline tags, and inline block-level tags here first. I welcome everyone to give you more advice after reading it. Thank you.

      For more css block-level tags, inline tags, and inline block tag conversion (2), please pay attention to the PHP Chinese website for related articles!

  • Statement of this Website
    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

    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

    Video Face Swap

    Video Face Swap

    Swap faces in any video effortlessly with our completely free AI face swap tool!

    Hot Tools

    Notepad++7.3.1

    Notepad++7.3.1

    Easy-to-use and free code editor

    SublimeText3 Chinese version

    SublimeText3 Chinese version

    Chinese version, very easy to use

    Zend Studio 13.0.1

    Zend Studio 13.0.1

    Powerful PHP integrated development environment

    Dreamweaver CS6

    Dreamweaver CS6

    Visual web development tools

    SublimeText3 Mac version

    SublimeText3 Mac version

    God-level code editing software (SublimeText3)

    Hot Topics

    Java Tutorial
    1664
    14
    PHP Tutorial
    1267
    29
    C# Tutorial
    1239
    24
    Google Fonts   Variable Fonts Google Fonts Variable Fonts Apr 09, 2025 am 10:42 AM

    I see Google Fonts rolled out a new design (Tweet). Compared to the last big redesign, this feels much more iterative. I can barely tell the difference

    How to Create an Animated Countdown Timer With HTML, CSS and JavaScript How to Create an Animated Countdown Timer With HTML, CSS and JavaScript Apr 11, 2025 am 11:29 AM

    Have you ever needed a countdown timer on a project? For something like that, it might be natural to reach for a plugin, but it’s actually a lot more

    HTML Data Attributes Guide HTML Data Attributes Guide Apr 11, 2025 am 11:50 AM

    Everything you ever wanted to know about data attributes in HTML, CSS, and JavaScript.

    A Proof of Concept for Making Sass Faster A Proof of Concept for Making Sass Faster Apr 16, 2025 am 10:38 AM

    At the start of a new project, Sass compilation happens in the blink of an eye. This feels great, especially when it’s paired with Browsersync, which reloads

    How We Created a Static Site That Generates Tartan Patterns in SVG How We Created a Static Site That Generates Tartan Patterns in SVG Apr 09, 2025 am 11:29 AM

    Tartan is a patterned cloth that’s typically associated with Scotland, particularly their fashionable kilts. On tartanify.com, we gathered over 5,000 tartan

    How to Build Vue Components in a WordPress Theme How to Build Vue Components in a WordPress Theme Apr 11, 2025 am 11:03 AM

    The inline-template directive allows us to build rich Vue components as a progressive enhancement over existing WordPress markup.

    While You Weren't Looking, CSS Gradients Got Better While You Weren't Looking, CSS Gradients Got Better Apr 11, 2025 am 09:16 AM

    One thing that caught my eye on the list of features for Lea Verou&#039;s conic-gradient() polyfill was the last item:

    A Comparison of Static Form Providers A Comparison of Static Form Providers Apr 16, 2025 am 11:20 AM

    Let’s attempt to coin a term here: "Static Form Provider." You bring your HTML

    See all articles