我正在测试像 Windows Metro 风格的中心分隔线。
.container {
height: 300px;
width: 70%;
background: #EEE;
margin: 10px auto;
position: relative;
}
.block {
background: green;
height: 100px;
width: 100px;
float: left;
margin: 10px;
}
<div class="container">
<div class="block">1. name of the company</div>
<div class="block">2. name of the company</div>
<div class="block">3. name of the company</div>
<div class="block">4. name of the company</div>
<div class="block">5. name of the company</div>
<div class="block">6. name of the company</div>
<div class="block">7. name of the company</div>
<div class="block">8. name of the company</div>
</div>
灰色框是 70% 并且在屏幕上居中是正确的,但是当我使窗口变宽并且绿色分隔线移动时,您可以看到某些点上的绿色框没有居中。
如何帮助我解决这个问题?