麻烦老师看看
来源:2-7 编程练习
qq_慕先生0342934
2020-04-19 21:07:21
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS布局</title>
<style type="text/css">
/*此处写代码*/
*{
margin: 0;
padding: 0;
}
.clear{
clear: both;
}
.main{
width:900px;
margin: 0 auto;
text-align: center;
font-weight: bolder;
}
.title{
width: 100%;
font-size: 20px;
padding-top: 10px;
padding-bottom: 10px;
}
.content .pictext{
float: left;
width: 426px;
margin-left: 12px;
margin-right: 12px;
}
.content .pictext img{
height: 240px;
}
.text{
text-align: left;
font-size: 14px;
}
</style>
</head>
<body>
<!-- 此处写代码 -->
<div class="main">
<div class="title">ENJOY THE LIFE</div>
<div class="content">
<div class="pictext">
<img src="http://climg.mukewang.com/58f829090001a4b504260240.jpg" />
<div class="text">
Life is like a book, just read more and more refined, nore write more carefully. When read,nind open, all things have been indifferent to heart. Life is the precipitation.
</div>
</div>
<div class="pictext">
<img src="http://climg.mukewang.com/58f8290f0001558804260240.jpg" />
<div class="text">
Life is like a cup of tea, let pcople lead a person to endless aftertastes. You again good taste, it will always have a different taste,different pcople will have different taste more.
</div>
</div>
<div class="clear"></div>
</div>
</div>
</body>
</html>
1回答
同学你好,效果正确,继续努力,祝学习愉快!
相似问题