The text with an indefinite width is vertically centered in the div, And the div is vertically centered.

Source: Internet
Author: User

The text with an indefinite width is vertically centered in the div, And the div is vertically centered.

I was asked during the interview: How can I vertically center a paragraph of variable width and height text?

Here we will 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.
</Div>
</Div>

Method 1:

# Main {
Position: relative; // use relative positioning in the parent Element
Width: 200px;
Height: 200px;
Overflow: hidden;
Background-color: # ff0;
Padding: 10px;
}
# Login {
Position: absolute;/* use absolute positioning in sub-element */
Top: 50%;/* 50% higher than the parent element */

Left: 50%;

Background-color: # eee;
-Webkit-transform: translate (-50%,-50%);/* CSS3 style,: translate (-50%,-50%)-50% to itself */
}

Method 2:

# Main {
Width: 200px;
Height: 200px;
Background-color: # eee;
Display: table;/* display the label element as a table */
}
# Login {
Display: table-cell;/* Neither ie7 nor ie6 can recognize display: table-cell ;*/
Vertical-align: middle;
}

Today is the first write essay, starting from the basics. Come on!

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.