CSS - em的边界宽度

时间:2016-11-19 16:03:17

标签: html css

我的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;
&#13;
&#13;

0 个答案:

没有答案