今天遇到一个有趣的问题:行内元素之间有时候会有一个间隔
<body>
<div id ="texts">
<button>按钮</button>
<button>按钮</button>
</div>
</body>
但是当我们这样子写的时候就会是这个样子的
<body>
<div id ="texts">
<button>按钮</button><button>按钮</button>
</div>
</body>
那么在块级元素又是怎么样的呢?我试着用inline-block看看,结果是这样的
<body>
<div></div><div></div>
<div></div>
</body>
css样式如下
div{
display:inline-block;
width:100px;
height: 100px;
background-color: #00ced1;
}
运行效果如下
换行的地方也存在着一个空格,看来在些html时候回车换行确实会导致空格
如果想要保持html编写的直观性,也想消除这个空格,目前只知道用
float:left;
<span style="font-size:14px;">div{
float:left;
width:100px;
height: 100px;
background-color: #00ced1;
}</span>