请问此处content的尺寸定义了为什么不起作用呢
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>vertical-align</title>
<style type="text/css">
*{padding:0px;margin: 0px;}
.warp1{
height:80px;
width: 100%;
background-color: #14191e;
/*在此补充代码*/
}
.warp1 h1{ color:#fff;
font-size:24px;
text-align:center;
line-height:80px;
/*在此补充代码*/ }
.warp2{
height:400px;
width: 100%;
border:1px #14191e solid;
display:table;
/*在此补充代码*/
}
.content{
/*在此补充代码*/
display:table-cell;
width:400px;
height:300px;
border:1px black dashed;
border:1px black solid;
vertical-align:middle;
}
.content p{ width:300px;
font-size:14px;
font-family: "微软雅黑";
line-height:1.5em;
margin:0 auto;
/*在此补充代码*/}
</style>
</head>
<body>
<div class="warp1">
<h1>欢迎来到慕课网</h1>
</div>
<div class="warp2">
<div class="content">
<p>慕课网,只学有用的!</p>
<p>慕课网(IMOOC)。慕课网(IMOOC)。慕课网(IMOOC)。慕课网(IMOOC)。慕课网(IMOOC)。</p>
</div>
</div>
</body>
</html>
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星