老师,这样对吗 ?
来源:2-7 编程练习
去学习去学习
2019-10-21 19:51:14
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS布局</title>
<style type="text/css">
*{
padding:0;
margin: 0;
}
/*此处写代码*/
h2{
text-align: center;
}
.main{
width: 1000px;
height:500px;
margin: 0 auto;
}
.main .m-main{
width: 100%;
height: auto;
padding-left: 50px;
}
.main .n-main{
width: 43%;
float: left;
padding: 10px;
}
.main .n-main .size{
font-size: 17.5px;
font-family: "微软雅黑";
font-weight: bold;
}
</style>
</head>
<body>
<!-- 此处写代码 -->
<div class="main">
<h2>ENJOY THE LIFE</h2>
<div class="m-main">
<div class="n-main">
<img src="http://climg.mukewang.com/58f829090001a4b504260240.jpg">
<div class="size">Liife is like a bock, just read more and more <br/>refined, more mrite more carefully. When read, <br/>mind open, all things have been indifferent to<br/> heart. Life is the precipitation.
</div>
</div>
<div class="n-main">
<img src="http://climg.mukewang.com/58f8290f0001558804260240.jpg">
<div class="size">Life is like a cup of ten, let people lead a <br/>person to endless aftertasten. You again good <br/>taste,it will always have a different taste,<br/>different people will have different taste <br/>more.
</div>
</div>
</div>
</div>
</body>
</html>1回答
好帮手慕码
2019-10-22
同学你好!
代码效果实现的是可以的。
如果帮助到了你,欢迎采纳,祝学习愉快~
相似问题