Three ways to vertically center text in a div with indefinite width and height

Source: Internet
Author: User
I was asked in the interview: How to make an indefinite width of the text vertically center it?

Now to summarize:

Write structure in body

<div id= "Main" >
<div id= "Login" >
DJSHDK awjdsd sede sfcdf vdj sh dkaw jds dse desf CDF VD jsh DKAWJD SDS Ede SFCDFV VD jsh DKAWJD SDS Ede SFCDFV.
</div>
</div>

Method One:

#main {
position:relative; Using relative positioning in parent elements
width:200px;
height:200px;
Overflow:hidden;
Background-color: #ff0;
padding:10px;
}
#login {
Position:absolute; /* Use absolute positioning in child elements */
top:50%; /* Height of 50% of the distance relative to the parent element */

left:50%;

Background-color: #eee;
-webkit-transform:translate ( -50%,-50%);/*css3 style, translate ( -50%,-50%) relative to its own distance from the x-axis and y-axis -50%*/
}

Method Two:

#main {
width:200px;
height:200px;
Background-color: #eee;
display:table; /* Make the LABEL element appear as a table */
}
#login {
Display:table-cell; Neither/*IE7 nor IE6 can recognize display:table-cell;*/.
Vertical-align:middle;
}

Related Article

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.