Home  >  Article  >  Web Front-end  >  Summary of recommended methods for horizontal centering of CSS

Summary of recommended methods for horizontal centering of CSS

高洛峰
高洛峰Original
2017-03-09 16:57:521481browse

The following editor will bring you a summary of recommended methods for horizontal centering of CSS. The editor thinks it’s pretty good, so I’ll share it with you now and give it as a reference. Let’s follow the editor and take a look at it

However, sometimes I find that writing like this doesn’t have any effect. what is the reason? Please look down.

Horizontal centering: divided into block-level element centering and line element centering

Inline elements:

Inline elements are inline elements. For example, , ,

Directly build a container with the "text-align:center" style, then all the inline elements contained in it will be centered.

<p style="text-align:center;border-style:solid">
        <p style="border-style:solid">我是块级元素,我不居中</p>
        <span style="border-style:solid">我是行内元素,我要居中</span>
    </p>

The effect is as shown below:

Summary of recommended methods for horizontal centering of CSS

Have you noticed something wrong? Why does the block-level element "look" centered? After adding width to

:

<p style="text-align:center;border-style:solid">
        <p style="border-style:solid;width:500px">我是块级元素,我不居中</p>
        <span style="border-style:solid">我是行内元素,我要居中</span>
    </p>

The effect is as shown below:

Summary of recommended methods for horizontal centering of CSS

It turns out that only the text inside is centered!

Then let’s see how the block-level elements are centered. Everyone knows that block-level elements can set height and width, so this is divided into fixed width and variable width.

Fixed width:

Fixed width is actually a very easy solution. Simply use margin:0 auto to center the container, and add text-align:center to center the text.

    <p>我是定宽块级元素,我要居中</p>

The effect is as shown in the picture:

Summary of recommended methods for horizontal centering of CSS

Variable width:

Various width is actually the most used, such as this kind of navigation bar:

Summary of recommended methods for horizontal centering of CSSBecause the content in the navigation bar is It will change, so the width cannot be fixed. There are three ways to center. One of them is to use the characteristics of the table tag. I feel that the applicability is not very good, so I won’t introduce it.

1. Directly change the element to an inline element, that is, display:inline, and then use text-align:center. But then width and height cannot be set.

css:

.container{   
    text-align:center;   
}   
.container ul{   
    list-style:none;   
    padding:0;   
    display:inline;   
}   
.container li{   
    margin-right:8px;   
    border-style: solid;   
    display:inline;   
}

body:

<p class="container">
    <ul>
        <li><a href="#">1</a></li>
        <li><a href="#">2</a></li>
        <li><a href="#">3</a></li>
    </ul>
</p>

Effect:

Summary of recommended methods for horizontal centering of CSS2. Use parent element floating and relative positioning and lelf:50% below. The child elements are still set but left:-50%.

The rectified css code:

.container ul{   
    list-style:none;   
    float: left;   
    position: relative;left: 50%;   
    padding:0;   
}   
.container li{   
    margin-right:8px;   
    float: left;   
    position: relative;left:-50%;   
}

The effect is the same, no more pictures

. (First of all, ul is set to left floating so that the width of ul is not 100%, but the sum of the widths of several li. Then the relative positioning of ul uses left to move ul to the position in the play. Because relative positioning takes the original position as the origin , so first move the middle as a whole, so that the left side of the sub-element is the center line, then just left:-50% or right:50% will be centered)

The above article summarizes the various methods of horizontal centering in CSS (recommended) This is all the content that the editor has shared with you. I hope it can give you a reference and I hope you will support the PHP Chinese website.

The above is the detailed content of Summary of recommended methods for horizontal centering of CSS. For more information, please follow other related articles on the PHP Chinese website!

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