select打印樣式——隱藏邊框和下拉箭頭

select打印樣式——隱藏邊框和下拉箭頭

使用下面的樣式可以防止下拉框在打印時出現邊框和黑色的下拉箭頭。

@media print {
    select {
         border: solid 1px #000;
         appearance: none;
         -moz-appearance: none;
         -webkit-appearance: none;
         padding-right: 14px;
     }
     select::-ms-expand {
         display: none;
     }
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章