Detailed explanation of the default values ​​of width and height in CSS: auto and %

Detailed explanation of the default values ​​of width and height in CSS: auto and %

in conclusion

  • % of width: defines the percentage width based on the width of the containing block (parent element), which will exceed the parent's limit
  • Width auto: Try to be wrapped by the parent
  • % of height: Based on the percentage height of the block-level object containing it, it will exceed the limit of the parent
  • Height auto: Try to be wrapped by the parent

Case

Be sure to copy the code and run it again, and spend a few minutes to experience how to be wrapped by the parent and break through the parent's restrictions

Width Case

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
        * {
            margin: 0;padding: 0;
        }
        body {
            background: #dcdcdc;
        }
        .box {
            width: 400px;
            border: 3px solid red;
            padding: 0 50px;
        }
        .box1 {
            width: auto;
            height: 100px;
            background: pink;
            padding: 0 50px;
            margin: 0 50px;
            border-width: 0 50px;
            border-style: solid;
            border-color: green;
        }
        .box2 {
            width: 100%;
            height: 100px;
            background: gold;
            padding: 0 50px;
            margin: 0 50px;
            border-width: 0 50px;
            border-style: solid;
            border-color: green;
        }
    </style>
</head>
<body>
<div class="box">
    <div class="box1"></div>
    <div class="box2"></div>
</div>
</body>
</html>

Height Case

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
        * {
            margin: 0;padding: 0;
        }
        body {
            background: #dcdcdc;
        }
        .box {
            width: 400px;
            border: 3px solid red;
            padding: 50 0px;
            height: 400px;
        }
        .box1 {
            width: 200px;
            height:auto;
            background: pink;
            padding: 50px 0px;
            margin: 50px 0px;
            border-width: 50px 0px;
            border-style: solid;
            border-color: green;
        }
        .box2 {
            width: 200px;
            height:100%;
            background: gold;
            padding: 50px 0px;
            margin: 50px 0px;
            border-width: 50px 0px;
            border-style: solid;
            border-color: green;
        }
     
    </style>
</head>
<body>
<div class="box">
    <div class="box1"></div>
    <div class="box2"></div>
</div>
</body>
</html>

This is the end of this article about the default values ​​of width and height in CSS, auto and % cases. For more relevant CSS width and height default values, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

<<:  How to automatically start RabbitMq software when centos starts

>>:  Practice of implementing custom search bar and clearing search events in avue

Recommend

Detailed explanation of basic data types in mysql8.0.19

mysql basic data types Overview of common MySQL d...

Vue implements calling PC camera to take photos in real time

Vue calls the PC camera to take pictures in real ...

JS implements WeChat's "shit bombing" function

Hello everyone, I am Qiufeng. Recently, WeChat ha...

mysql create database, add users, user authorization practical method

1. Create a MySQL database 1. Create database syn...

Three commonly used MySQL data types

Defining the type of data fields in MySQL is very...

Do designers need to learn to code?

Often, after a web design is completed, the desig...

Drop-down menu and sliding menu design examples

I found a lot of websites that use drop-down or sl...

Install zip and unzip command functions under Linux and CentOS (server)

Install zip decompression function under Linux Th...

HTML elements (tags) and their usage

a : Indicates the starting or destination positio...

CentOS 7 set grub password and single user login example code

There are significant differences between centos7...

Essential conditional query statements for MySQL database

Table of contents 1. Basic grammar 2. Filter by c...

Detailed steps to install Mysql5.7.19 using yum on Centos7

There is no mysql by default in the yum source of...

...

Set an icon for the website to be displayed on the far left of the browser tab

What is the purpose of this sentence? Copy code Th...

Solution to HTML2 canvas SVG not being recognized

There is a new feature that requires capturing a ...