1.块级元素嵌套居中(实现带下划线的文本居中)
<style>
.div1 {
width: 100%;
}
.div2 {
width: 15%;
margin: 0 auto;/* //使div2在div1的中间显示 */
text-align: center;/* //让文本在横线中间 */
}
.ll {
border-bottom: 1px solid black;
}
</style>
</head>
<body>
<div class="div1">
<div class="div2">文本内容
<div class="ll"></div>
</div>
</div>
</body>
2.单行文本居中