父元素和水平居中
在第一个span标签里面加一个第二个span标签,然后为第一个span标签设置水平居中。页面显示没效果,难道第一个span标签不是第二个span标签的父元素吗?
在第一个span标签里面加一个第二个span标签,然后为第一个span标签设置水平居中。页面显示没效果,难道第一个span标签不是第二个span标签的父元素吗?
2017-03-24
<!DOCTYPE html>
<html>
<head>
<style>
#te{
width: 100px;
height: 100px;
display:block;
background:yellow;
}
#tes{
text-align:center;
margin-left:auto;
margin-right:auto;
display:block;
line-height:90px;
font-size:20px;
}
div{
width:100px;
height:100px;
background:red;
text-align:center;
margin-left:center;
margin-right:center;
line-height:90px;
font-size:20px;
}
</style>
</head>
<body>
<span id="te">
<span id="tes">hello</span>
</span>
<div>welcome</div>
</body>
</html>
举报