css 之 text-align 文本对齐

css 之 text-align 文本对齐

<style>
.box{
    background-color: #00ff00;
    text-align: center;  /** 让inner中内容居中对齐,不是对inner的div居中*/
}
.inner{
    background-color: #9b5384;
    width: 200px;  /*这行*/
    display: inline-block;  /*这行*/
}
</style>
<div class="box">
    <div class="inner">我是div元素</div>
</div>

原文地址:https://www.cnblogs.com/dafei4/p/13063018.html