Indeterminate width element centered

Source: Internet
Author: User

1. Table method

First step: Add a table label (including <tbody>, <tr>, <td>) to the center of the element you want to set.

Step two: Set the "left and right margin center" for this table (this is the same as for a fixed-width block element).

2. Display:inline method

Change the dispaly of the block-level element to the inline type, and then use the text-align:center to achieve the centering effect.

Style>.container{text-align:center;}. Container ul{list-style:none;display:inline;}. Container li{display:inline;} </style>

3. Float method

By setting float for the parent element and then setting position:relative and left:50% for the parent element, the child elements are set position:relative and left:-50% to achieve horizontal centering.

<style>.container{    Float:left;    position:relative;    Left:50%}.container ul{    List-style:none;    margin:0;    padding:0;        position:relative;    left:-50%;}. Container li{float:left;display:inline;margin-right:8px;} </style><body><div class= "Container" >    <ul>        <li><a href= "#" >1</a ></li>        <li><a href= "#" >2</a></li>        <li><a href= "#" >3</a ></li>    </ul></div></body>

  

Indeterminate width element centered

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.