这个居中的效果只对文本 不对h2吗 只是文本居中了 h2的框却没有居中
<style>
.wrap{height:200px;line-height:200px;border:1px solid red;}
.wrap h2{
margin:0;
height:100px;
border:1px solid red;
background:#ccc;
}
</style>
</head>
<body>
<!--下面是代码任务部分-->
<div class="wrap">
<h2>hi,imooc!</h2>
</div>
</body>
</html>这个居中的效果只对文本 不对h2吗 只是文本居中了 h2的框却没有居中