刪除 瀏覽器自帶input輸入框會(huì)有黃色背景,以及刪除處于焦點(diǎn)的輸入框border
.input-value {
border: 0;
height: 60px;
width: 150px;
-webkit-box-shadow: 0 0 0 1000px white inset;
&:focus {
outline: none !important;
border: none;
box-shadow: white;
}
}
// 去掉按鈕點(diǎn)擊時(shí)外邊框
button:focus {
outline:0;
}