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;
     }
}

你可能感兴趣的:(前端)