老师帮忙检查下
来源:2-7 编程练习
weixin_慕码人1392209
2020-03-29 20:39:15
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>2-7</title>
<style type="text/css">
.body{
width: 894px;
margin: 0 auto;
/*background-color: #eee;*/
}
.body .title{
height: 100px;
width: 100%;
font-size: 25px;
text-align: center;
font-family: "微软雅黑";
font-weight: bold;
line-height: 100px;
}
.img{
display: block;
width: 426px;
height: 240px;
}
.body .content{
width: 100%
font-size:20px;
font-family: "微软雅黑";
}
.body .content .part{
float: left;
width: 426px;
padding: 10px;
}
.body .content .part .img{
padding-bottom: 10px;
}
</style>
</head>
<body>
<div class="body">
<div class="title">ENJOY THE LIFE</div>
<div class="content">
<div class="part">
<div class="img"><img src="http://climg.mukewang.com/58f829090001a4b504260240.jpg"></div>
<div class="word">
life is just like a book,just read more and more refined,more write more carefully.when read,mind open,all things have been indifferent to heart.life is the precipition.
</div>
</div>
<div class="part">
<div class="img"><img src="http://climg.mukewang.com/58f8290f0001558804260240.jpg"></div>
<div class="word">
life is just like a book,just read more and more refined,more write more carefully.when read,mind open,all things have been indifferent to heart.life is the precipition.
</div>
</div>
</div>
</div>
</body>
</html>1回答
同学你好,属性值结束的地方忘记加分号,会影响属性解析无效:

练习的时候一定要细心,每一个样式写完都要添加分号。
祝学习愉快 !
相似问题