<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>示例</title>
<style>
* {
margin: 0;
padding: 0;
}
.box {
/*font-size: 0;*/
display: table;/*子元素自动居中*/
/* 指定段字之间的空间 */
/* word-spacing属性增加或减少字与字之间的空白。 */
word-spacing: -1em;
}
.box1, .box2 {
width: 100px;
height: 100px;
display: inline-block;
}
.box1 {
background-color: red;
}
.box2 {
background-color: green;
/*margin-left: -6px;*/
}
</style>
</head>
<body>
<div class="box">
<div class="box1">
第一个盒子的内容
</div>
<div class="box2">
第二个盒子的内容
</div>
</div>
</body>
</html>
上述运行结果: