Summary of experience in using div box model

Summary of experience in using div box model
Calculation of the box model <br />Margin + border + padding + content

The width and height in CSS only set the height and width of the content area. Not the height and width of the entire model.

Copy code
The code is as follows:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>demo</title>
<style type="text/css">
*{margin:0; padding:0;}
dl { background:red;border:10px solid #000; width:100px; height:100px;}
dt { background:yellow;}
dd { background:green;}
</style>
</head>
<body>
<dl>
<dt>test of dt</dt>
<dd>test of dd</dd>
</dl>
</body>
</html>

Setting margins and padding will not affect the height and width of the content area, but only change the height and width of the secondary box model area.

When the box models are nested, the inner box model will affect the outer box model.

<<:  The actual process of implementing the guessing number game in WeChat applet

>>:  The difference between animation and transition

Recommend

Mysql practical exercises simple library management system

Table of contents 1. Sorting function 2. Prepare ...

Web Standard Application: Redesign of Tencent QQ Home Page

Tencent QQ’s homepage has been redesigned, and Web...

Native js to implement drop-down box selection component

This article example shares the specific code of ...

Example code for element multiple tables to achieve synchronous scrolling

Element UI implements multiple tables scrolling a...

Vue project @change multiple parameters to pass multiple events

First, there is only one change event. changeleve...

How to use vue3 to build a material library

Table of contents Why do we need a material libra...

MySQL Optimization: Cache Optimization

I am happy that some bloggers marked my article. ...

JS practical object-oriented snake game example

Table of contents think 1. Greedy Snake Effect Pi...

The principle and implementation of two-way binding in Vue2.x

Table of contents 1. Implementation process 2. Di...

Detailed explanation of Tomcat configuration and optimization solutions

Service.xml The Server.xml configuration file is ...

Pay attention to the use of HTML tags in web page creation

HTML has attempted to move away from presentation...

Implementation example of react project from new creation to deployment

Start a new project This article mainly records t...

How to call the interrupted system in Linux

Preface Slow system calls refer to system calls t...

MySQL trigger definition and usage simple example

This article describes the definition and usage o...