老师帮我看一下,总感觉不对。
来源:2-7 编程练习
Sunflower加油
2019-04-23 10:05:10
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <style> *{ margin: 0; padding: 0; } .content{ width: 860px; height: 600px; margin: 0 auto; } .content .title{ width: 860px; text-align: center; padding-top: 20px; font-size: 20px; } .pic-text{ width: 860px; overflow: hidden; font-family: "微软雅黑"; margin-bottom: 30px; } .pic1,.pic2{ width: 426px; } .pic1{ float: left; } .pic2{ float: right; padding-top: 21px; } img{ width: 426px; height: 240px; } dd{ font-size: 12px; } </style> </head> <body> <div class="content"> <div class="title">ENJOY THE LIFE</div> <div class="pic-text"> <dl class="pic1"> <dt><img src="http://climg.mukewang.com/58f829090001a4b504260240.jpg"></dt> <dd>Life is like a book, just read more and moore refined, more write more carefuly. When read, mind open, all things have been indifferent to heart. Life is the precipitation. </dd> </dl> <dl class="pic2"> <dt><img src="http://climg.mukewang.com/58f8290f0001558804260240.jpg"></dt> <dd>Life is like a cup of tea, let people lead a person to endless aftertastes. You again good taste, it widd always have a different taste, different people widd have different taste more. </dd> </dl> </div> </div> </body> </html>
3回答
樱桃小胖子
2019-04-23
测试了同学的代码,去掉padding-top: 21px;是对齐的哦
祝学习愉快!
Sunflower加油
提问者
2019-04-23
不知道是哪里出了错,我左浮动后图片是上下错开的,我才给另一张图片加的内边距。
Miss路
2019-04-23
同学,你好。两张图片,一个上填充了,一个没有上填充,所以没有对齐:
如果帮助到了你,欢迎采纳!
祝学习愉快!
相似问题