CSS Settings Vertical Center

Source: Internet
Author: User

(1) through Display:absolute; set

<div style= "position:absolute;width:200px;height:200px;margin:auto;border:1px solid red;top:0px;bottom:0px; left:0px;right:0px; " >
</div>

(2) Set by CSS3 property

<!--Way 2: Set by CSS3: Display:-webkit-box;-webkit-box-pack:center;-webkit-box-align:center; -
<div style= "Display:-webkit-box;-webkit-box-pack:center;-webkit-box-align:center;width:100px; height:100px;border:1px solid red; " >
<p style= "border:1px solid red;" >test</p>
</div>

At this point is the P element perpendicular, left and right center;

(3) Put small elements, Div vertical center, plus margin:0 Auto, left and right center;

<!--mode 3 by setting display:table; --->
<div style= "border:1px solid red;display:table;width:100%;height:100%;" >
<div style= "display:table-cell;vertical-align:middle;border:1px solid Red;margin:auto;" >
<div style= "border:1px solid red;width:100px;height:100px;margin:0 auto;" >111</div>
</div>
</div>

(4) Transform property setting via HTML5

<!--Mode 4 via Tranform:translate ( -50%,-50%);
<div style= "Position:relative;top:50%;left:50%;transform:translate ( -50%,-50%); width:100px;height:100px; border:1px solid red; " ></div>

CSS Settings Vertical Center

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.