How CSS enables Li to center horizontally

Source: Internet
Author: User

First, give a simple example HTML code

<Body>    <formID= "Form1"runat= "Server">    <DivID= "title">    <ulID= "List" >    <Li>Title One</Li>    <Li>Title II</Li>    <Li>Title III</Li>    <Li>Title IV</Li>    <Li>Title Five</Li>    </ul>    </Div>        </form></Body>

Previously, in order for the elements in Li to be displayed horizontally, Float:left was always set to Li. The effect is as follows.

But I want the title to be centered to show that there is no other way than to set Margin-left. This is not an absolute play.

The following is a simple two-part discovery.

One, set Li's Display:inline, so that it can be displayed horizontally.

Second, set the text-align:center of the previous Div;

#title {    text-align:center;} ul Li {    list-style-type:none;     display:inline;}

How CSS enables Li to center horizontally

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.