问答详情
源自:15-2 水平居中设置-定宽块状元素

为什么我用 .txtCenter,{ text-align:center; } 在定宽块状元素,其会居中?

为什么我用 .txtCenter,{ text-align:center; } 在定宽块状元素,其会居中?

<!DOCTYPE HTML>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>定宽块状元素水平居中</title>

<style>

div{

    border:1px solid red;

width:400px;


}


.txtCenter{

text-align:center;

}







</style>

</head>


提问者:慕斯卡6052500 2018-02-03 19:34

个回答

  • 慕斯卡6052500
    2018-02-27 19:34:26

    谢谢!

  • 不成大触不可熟睡
    2018-02-21 17:40:16

    你的居中指的是文字的居中,并不是块状元素的居中

  • 慕斯卡6052500
    2018-02-03 19:36:53

    <!DOCTYPE HTML>

    <html>

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">

    <title>定宽块状元素水平居中</title>

    <style>

    div{

        border:1px solid red;

    width:400px;


    }


    .txtCenter{

    text-align:center;

    }







    </style>

    </head>


    <body>

    <div class="txtCenter">我是定宽块状元素,我要水平居中显示。</div>

    </body>

    </html>