Home Web Front-end CSS Tutorial Summary of various centered layout methods using CSS

Summary of various centered layout methods using CSS

Mar 10, 2017 am 10:52 AM
css layout method

This article summarizes various centering layout methods using CSS. Interested friends can refer to

This article discusses the situation where the centering situation is set to a variable total width and a variable content width. (Still centered when resized).

Special note: When setting position:absolute; on an element to set the centering effect, in addition to the css3 method introduced in the blog, you can also use negative margin to center. This solves the compatibility problem, but only Suitable for situations where the width and height are known (because a negative offset is half the width and height of the element). When the width and height change, there is no longer a centered effect.

Child elements in these layouts default to the content width because of their attribute settings.

All the centering examples in this article only discuss the implementation of css. The html code is unified as follows:

<p class="parent">   
    <p class="child">demo</p>   
</p>
Copy after login

1. Horizontal centering

Summary of various centered layout methods using CSS

1.1 inline-block with text-align

.parent{   
    text-align: center;   
}   
.child{   
    display: inline-block;   
}
Copy after login

##Advantages:The compatibility is very good. You only need to add *display:inline and *zoom:1 in the css of the child element to be compatible with IE6 and 7. Disadvantage: the internal text will also be horizontally centered, so the impact needs to be eliminated.

1.2 table with margin

.child{   
    display:table;   
    margin: 0 auto;   
}
Copy after login

Advantages: The setting is very simple, just set Set the sub-element, support IE8+, need to support IE6, 7, you can replace the sub-element into a table structure.

1.3 abasolute with transform

.parent{   
    position:relative;   
}   
.child{   
    position:absolute;   
    left:50%;   
    transform: translateX(-50%);   
}
Copy after login

Advantages: The centered element does not affect other elements . Disadvantages: CSS3 new attributes support IE9+, but lower version browsers do not support it.

2. Vertical centering

Summary of various centered layout methods using CSS

##2.1 table-cell with vertical-align

.parent{   
    display: table-cell;   
    vertical-align:middle;   
}
Copy after login

Advantages:

Easy to set up, just set the parent element, compatible with IE8+, when you need to be compatible with local browsers, you can replace p with a table structure.

2.2 absolute with transform

.parent{   
    position:relative;   
}   
.child{   
    position:absolute;   
    top: 50%;   
    transform: translateY(-50%);   
}
Copy after login

Advantages:

The centered element does not affect other elements . Disadvantages: CSS3 new attributes support IE9+, but lower version browsers do not support it. 3. Horizontal + vertical centering

Summary of various centered layout methods using CSS

3.1 inline-block with text-align plus table-cell with vertical-align

.parent{   
    display: table-cell;   
    vertical-align:middle;   
    text-align:center;   
}   
.child{   
    display: inline-block;   
}
Copy after login

Advantages:

Integrating the first two methods, the compatibility is good! Supports IE8+, and is also compatible with lower version browsers. Disadvantages: The setup is more complicated.

3.2 absolute with transform

.parent{   
    position: relative;   
}   
.child{   
    position: absolute;   
    left: 50%;   
    top: 50%;   
    transform: translate(-50%,-50%);   
}
Copy after login

Advantages:

The centered element does not affect other elements . Disadvantages: CSS3 new attributes support IE9+, but lower version browsers do not support it.

4. Almighty flex

css3 adds new layout attributes. The layout is simple and powerful, but the performance is slightly worse. It only supports IE10+ and is mostly used on mobile terminals.

4.1 Horizontal centering

/*当父元素设置display: flex;时,子元素为flex-item,默认为内容宽度。*/  
.parent{   
    display: flex;   
    justify-content: center;   
}   
/* 在设置子元素为margin: 0 auto;时,可删除父元素的justify-content: center;同样可以达到居中效果*/  
/*  .child{
        margin: 0 auto;   
    }*/
Copy after login

4.2 Vertical centering

.parent{   
    display: flex;   
    align-items: center;   
}
Copy after login

4.3 Horizontal and vertical centering

parent{       
    display: flex;       
    justify-content: center;       
    align-items: center;       
}       
/*如同flex布局的第一部分一样这里也可以对子元素进行下面的设置:同时删除上面的除去display外的其他属性*/      
/*  .child{   
        margin:auto;     
    } */
Copy after login

The above is the entire content of this article, I hope it will be helpful to Everyone’s learning helps.

The above is the detailed content of Summary of various centered layout methods using CSS. For more information, please follow other related articles on the PHP Chinese website!

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

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)

Working With GraphQL Caching Working With GraphQL Caching Mar 19, 2025 am 09:36 AM

If you’ve recently started working with GraphQL, or reviewed its pros and cons, you’ve no doubt heard things like “GraphQL doesn’t support caching” or

Making Your First Custom Svelte Transition Making Your First Custom Svelte Transition Mar 15, 2025 am 11:08 AM

The Svelte transition API provides a way to animate components when they enter or leave the document, including custom Svelte transitions.

Building an Ethereum app using Redwood.js and Fauna Building an Ethereum app using Redwood.js and Fauna Mar 28, 2025 am 09:18 AM

With the recent climb of Bitcoin’s price over 20k $USD, and to it recently breaking 30k, I thought it’s worth taking a deep dive back into creating Ethereum

Show, Don't Tell Show, Don't Tell Mar 16, 2025 am 11:49 AM

How much time do you spend designing the content presentation for your websites? When you write a new blog post or create a new page, are you thinking about

How do you use CSS to create text effects, such as text shadows and gradients? How do you use CSS to create text effects, such as text shadows and gradients? Mar 14, 2025 am 11:10 AM

The article discusses using CSS for text effects like shadows and gradients, optimizing them for performance, and enhancing user experience. It also lists resources for beginners.(159 characters)

Creating Your Own Bragdoc With Eleventy Creating Your Own Bragdoc With Eleventy Mar 18, 2025 am 11:23 AM

No matter what stage you’re at as a developer, the tasks we complete—whether big or small—make a huge impact in our personal and professional growth.

What the Heck Are npm Commands? What the Heck Are npm Commands? Mar 15, 2025 am 11:36 AM

npm commands run various tasks for you, either as a one-off or a continuously running process for things like starting a server or compiling code.

A bit on ci/cd A bit on ci/cd Apr 02, 2025 pm 06:21 PM

I&#039;d say "website" fits better than "mobile app" but I like this framing from Max Lynch:

See all articles