0
我有一個輸入框,我<input class='cv-input cv-dashboard-input'>
頁面上,下列規則定義:邊框不到1個像素,這是怎麼回事?
input.cv-dashboard-input {
font-family: Roboto;
font-weight: 300;
color: #004d6f;
border: 1px solid #adadad;
border-radius: 0px;
font-size: 14px;
transition: all 0.3s;
margin: 0;
box-sizing: border-box;
}
input.cv-input {
height: 42px;
width: 100%;
padding: 5px;
font-family: Roboto;
font-weight: 300;
}
當我檢查在Firefox此元素,並檢查其計算的尺寸,它指出,我的邊框寬度爲0.583333 PX。我認爲最小渲染大小是1像素,那麼這是怎麼發生的呢?
我使用Firefox 54.0.1(32位)