search
HomeWeb Front-endHTML Tutorialcss box model related styles_html/css_WEB-ITnose

Without further ado, let’s start with the basics.

Type of box

1. Basic type of box

In css, use display to define the type of box. Generally divided into block type and inline type.

For example, div belongs to block type and span belongs to inline type

 

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title></title>    <style type="text/css">        div{            background-color: yellow;        }        span        {            background-color: #000099;        }    </style></head><body>   <div>我是div</div>   <span>我是span</span>   <span>我也是span</span></body></html>

By running this code, we It can be clearly seen that the width of the block type occupies the entire browser, while the width of the inline element is equal to the width of its content

Each line is only allowed to accommodate one block element, but can accommodate multiple inline elements.

Next, we can change the div to block type through the display attribute, and change the span to inline attribute to see its running effect.

 

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title></title>    <style type="text/css">        div{            background-color: yellow;            display: inline;        }        span        {            background-color: #000099;            display: block;        }    </style></head><body>   <div>我是div</div>   <span>我是span</span>   <span>我也是span</span></body></html>

2.inline-block type

Inline-block is a type of block box. Set the display attribute of the element to inline-block. Its display is the same as setting

to inline, but the width and height attributes of the element can only act on the block element. .

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title></title>    <style type="text/css">        div{            background-color: yellow;            display:inline-block;            width: 100px;            height: 100px;        }    </style></head><body>   <div>我是div</div>   <div>我是div2</div></body></html>

3. inline-table type

Look at the following first

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title></title>    <style type="text/css">        table        {            width: 200px;            border: solid 1px red;            display: inline-table;            vertical-align: bottom;        }        td{            border: solid 1px red;        }    </style></head><body bo>   大家好   <table>       <tr>           <td>1</td>       </tr>       <tr>           <td>2</td>       </tr>   </table>   大家好</body></html>

The table belongs to the block type. If you want the text to be displayed side by side with the table, you need to set the display attribute of the table to inline-table. However, each browser

has different alignment methods for text and tables. Generally, you need to set the display attribute of the table to inline-table. Set its alignment.

4.list-item type

 You can display multiple elements as a list and add a list mark in front of them.

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title></title>    <style type="text/css">      div{          display: list-item;          list-style-type: decimal;          margin-left: 30px;      }    </style></head><body bo>   <div>list1</div>   <div>list2</div>   <div>list3</div>   <div>list4</div>   <div>list5</div></body></html>

5.none type

If the element is set to none, the element will not be displayed.

6.overflow attribute

 overflow is a display method used when the content in the box cannot be displayed.

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title></title>    <style type="text/css">      #div1{          width: 100px;          height: 100px;          border: solid 1px red;          overflow: hidden;      }      #div2{          margin-top: 10px;          width: 100px;          height: 100px;          border: solid 1px green;          overflow: scroll;      }    </style></head><body>   <div id="div1">测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试</div>   <div id="div2">测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试</div></body></html>

There are also two attributes, overflow-x and overflow-y, which can be set separately for the horizontal or vertical direction beyond the box. Display the content of the range

Set the display mode.

7.box-sizing attribute

  The box-sizing attribute is a new box model attribute in CSS3.

Use width and height in css to set the width and height of elements, but you can use the box-siziing attribute to specify

Whether the width and height set with the width and height attributes include elements The inner padding area, and the width and height of the border.

The box-sizing attribute values ​​are content-box and border-box. The content-box indicates that the width and height of the element do not include the internal padding area

and the width and height of the border. The border-box indicates that the width and height of the element include the width and height of the internal padding area and the border.

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title></title>    <style type="text/css">        div{            width: 300px;            height: 300px;            border: solid 30px red;            padding:30px ;        }        div#div1{          box-sizing: content-box;          -webkit-box-sizing: content-box;      }        div#div2{          box-sizing: border-box;          -webkit-box-sizing: border-box;      }    </style></head><body>   <div id="div1">测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试</div>   <div id="div2">测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试测试</div></body></html>

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
How do you insert an image into an HTML page?How do you insert an image into an HTML page?May 04, 2025 am 12:02 AM

ToinsertanimageintoanHTMLpage,usethetagwithsrcandaltattributes.1)UsealttextforaccessibilityandSEO.2)Implementsrcsetforresponsiveimages.3)Applylazyloadingwithloading="lazy"tooptimizeperformance.4)OptimizeimagesusingtoolslikeImageOptimtoreduc

HTML's Purpose: Enabling Web Browsers to Display ContentHTML's Purpose: Enabling Web Browsers to Display ContentMay 03, 2025 am 12:03 AM

The core purpose of HTML is to enable the browser to understand and display web content. 1. HTML defines the web page structure and content through tags, such as, to, etc. 2. HTML5 enhances multimedia support and introduces and tags. 3.HTML provides form elements to support user interaction. 4. Optimizing HTML code can improve web page performance, such as reducing HTTP requests and compressing HTML.

Why are HTML tags important for web development?Why are HTML tags important for web development?May 02, 2025 am 12:03 AM

HTMLtagsareessentialforwebdevelopmentastheystructureandenhancewebpages.1)Theydefinelayout,semantics,andinteractivity.2)SemantictagsimproveaccessibilityandSEO.3)Properuseoftagscanoptimizeperformanceandensurecross-browsercompatibility.

Explain the importance of using consistent coding style for HTML tags and attributes.Explain the importance of using consistent coding style for HTML tags and attributes.May 01, 2025 am 12:01 AM

A consistent HTML encoding style is important because it improves the readability, maintainability and efficiency of the code. 1) Use lowercase tags and attributes, 2) Keep consistent indentation, 3) Select and stick to single or double quotes, 4) Avoid mixing different styles in projects, 5) Use automation tools such as Prettier or ESLint to ensure consistency in styles.

How to implement multi-project carousel in Bootstrap 4?How to implement multi-project carousel in Bootstrap 4?Apr 30, 2025 pm 03:24 PM

Solution to implement multi-project carousel in Bootstrap4 Implementing multi-project carousel in Bootstrap4 is not an easy task. Although Bootstrap...

How does deepseek official website achieve the effect of penetrating mouse scroll event?How does deepseek official website achieve the effect of penetrating mouse scroll event?Apr 30, 2025 pm 03:21 PM

How to achieve the effect of mouse scrolling event penetration? When we browse the web, we often encounter some special interaction designs. For example, on deepseek official website, �...

How to modify the playback control style of HTML videoHow to modify the playback control style of HTML videoApr 30, 2025 pm 03:18 PM

The default playback control style of HTML video cannot be modified directly through CSS. 1. Create custom controls using JavaScript. 2. Beautify these controls through CSS. 3. Consider compatibility, user experience and performance, using libraries such as Video.js or Plyr can simplify the process.

What problems will be caused by using native select on your phone?What problems will be caused by using native select on your phone?Apr 30, 2025 pm 03:15 PM

Potential problems with using native select on mobile phones When developing mobile applications, we often encounter the need for selecting boxes. Normally, developers...

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

Video Face Swap

Video Face Swap

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

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

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.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft