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

font-size清除inline-block带来的排版问题

时间:2017-06-22 12:10:58      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:内容   cal   inline   src   otto   splay   ges   使用   tom   

在父元素使用font-size:0清除子元素inline-block的间距的时候如果子元素内容不一会产生排版问题

在子元素设置vertrical-align对齐方式解决

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
  <style>
    .content{
      width: 500px;
      height: 100px;
      border: 1px solid black;
      font-size: 0;
    }
    .content span{
      font-size: 16px;
      display: inline-block;
      width: 100px;
      height: 100px;
      border: 1px solid black;
      box-sizing: border-box;
      background-color: red;
    /*  vertical-align: bottom;*/
    }
  </style>
</head>
<body>
  <div class="content">
    <span></span>
    <span>2</span>
    <span>3</span>
    <span>4</span>
    <span>5</span>
  </div>
</body>
</html>

技术分享

font-size清除inline-block带来的排版问题

标签:内容   cal   inline   src   otto   splay   ges   使用   tom   

原文地址:http://www.cnblogs.com/xujiakang/p/7063988.html

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