How do I center list items inside a UL element?

后端 未结 12 2520
旧时难觅i
旧时难觅i 2020-11-29 23:12

How do I center list items inside a ul without using extra divs or elements. I have the following. I thought text-align:center would do the trick. I can\'t seem

12条回答
  •  暖寄归人
    2020-11-29 23:18

    ul {
        width: 100%;
        background: red;
        height: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    li {
        background: blue;
        color: white;
        margin-right: 10px;
    }
    

提交回复
热议问题