您可能不会相信这一切都是因为在代码中添加换行符或空格(使用 display: inline-block 时)会在元素之间添加空格。
代替
<li>one</li>
<li>two</li>
<li>three</li>
尝试
<li>one</li><li>two</li><li>three</li>
你应该以这样的方式结束:
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Margin</title>
<link rel="stylesheet" type="text/css" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<style type="text/css">
body, ul {margin: 0; padding: 0; width: 100%}
ul {background: green; list-style-type: none}
li {display: inline-block; width: 11%; margin:0 11%; background: red}
</style>
</head>
<body>
<ul>
<li>one</li><li>two</li><li>three</li> <!-- No break lines nor spaces -->
</ul>
</body>
</html>