码迷,mamicode.com
首页 > 其他好文 > 详细

35displayinline-block的上下对齐方式

时间:2019-06-03 12:20:59      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:oct   gre   play   meta   red   back   bottom   splay   head   

1、盒子里有内容时,是内容顶部与内容顶部对齐,有border-top或margin-top时,border-top或margin-top凸出在对齐线上面。
2、盒子里无内容时,是margin-bottom底部与margin-bottom底部对齐;无border-bottom和margin-bottom时,内容的底部与margin-bottom的底部对齐;有border-bottom且无margin-bottom时,border-bottom的底部与margin-bottom的底部对齐。
3、有的盒子有内容,有的盒子没内容,有内容盒子的内容底部与无内容盒子的margin-bottom的底部对齐。
4、示例如下:
```html:run
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style type="text/css">
*{padding:0;margin:0;}
</style>
</head>
<body>
<div style="display: inline-block;height:50px;width:100px;background:red;">0</div>
<div style="display: inline-block;height:40px;width:100px;background:red;border-top:25px solid green;">0</div>
<div style="display: inline-block;height:60px;width:100px;background:red;border-top:25px solid green;margin-top:30px;">0</div>


<div style="display: inline-block;height:50px;width:100px;background:red;"></div>
<div style="display: inline-block;height:40px;width:100px;background:red;border-bottom:25px solid green;"></div>
<div style="display: inline-block;height:60px;width:100px;background:red;border-bottom:25px solid green;margin-bottom:30px"></div>
</body>
</html>
```

35displayinline-block的上下对齐方式

标签:oct   gre   play   meta   red   back   bottom   splay   head   

原文地址:https://www.cnblogs.com/gushixianqiancheng/p/10966658.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!