Example of using negative margin to achieve average layout in CSS

Example of using negative margin to achieve average layout in CSS

For evenly distributed layouts, we generally use the negative margin method. The following figure shows an average layout.

In this case, we usually add a div between the parent element and the child element, and then set a negative margin-right for this div, with the value being the distance between the two child elements.
For example, we set the width of each child element to 100px, there are 3 child elements in total, and give each child element a margin-right of 50px, then the width of the parent element should be 100x3+50x2=400px. Above code:

//HTML
<div class="father">
    <div class="middle">
        <div class="son1"></div>
        <div class="son2"></div>
        <div class="son3"></div>
    </div>
</div>
//CSS
.son1,.son2,son3{
    margin-right:50px;
    width:100px;
}
.father{
    width:400px;
}
.middle{
    margin-right:-50px;
}

The middle layer margin-right:-50px is equivalent to "extending" 50px to the right, so that the son3 element has space to be in the same line as other elements.

This concludes this article about examples of using CSS to achieve average layout with negative margins. For more information about CSS average layout with negative margins, please search previous articles on 123WORDPRESS.COM or continue browsing the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  Simple implementation of html hiding scroll bar

>>:  The effect of zooming in on a Taobao store is similar to the principle of using a slideshow.

Recommend

How to add fields to a large data table in MySQL

Preface I believe everyone is familiar with addin...

Detailed explanation of Mysql transaction processing

1. MySQL transaction concept MySQL transactions a...

How to run Python script on Docker

First create a specific project directory for you...

Specific use of Bootstrap5 breakpoints and containers

Table of contents 1. Bootstrap5 breakpoints 1.1 M...

How to configure mysql5.6 to support IPV6 connection in Linux environment

Introduction: This article mainly introduces how ...

JS Decorator Pattern and TypeScript Decorators

Table of contents Introduction to the Decorator P...

Getting Started Guide to MySQL Sharding

Preface Relational databases are more likely to b...

A simple way to achieve scrolling effect with HTML tag marquee (must read)

The automatic scrolling effect of the page can be...

Implementation of mysql split function separated by commas

1: Define a stored procedure to separate strings ...

How to write elegant JS code

Table of contents variable Use meaningful and pro...

Vue integrates Tencent TIM instant messaging

This article mainly introduces how to integrate T...

Goodbye Docker: How to Transform to Containerd in 5 Minutes

Docker is a very popular container technology. Th...