我的div有id ="例子"我设置font-size:14px,border-width:0.5em; 问题是,为什么在浏览器边框宽度是6.4px而不是7px?
var elt = document.getElementById('example');
var width = window.getComputedStyle(elt).borderTopWidth;
elt.textContent = width;

#example {
width: 100px;
height: 100px;
font-size: 14px;
background-color: #000;
border-top: 0.5em solid #ff00ff;
color: white;
}

<div id="example"></div>
&#13;