如何用css样式修改select下拉箭头默认样式
2021-03-28 13:25
标签:修改 箭头 style poi tail css 下拉 net 调整 转自:https://blog.csdn.net/Originally_M/article/details/98968399 如何用css样式修改select下拉箭头默认样式 标签:修改 箭头 style poi tail css 下拉 net 调整 原文地址:https://www.cnblogs.com/-ting/p/12620045.htmlselect {
/* 鼠标移上,变小手 */
cursor: pointer;
padding: 0 10px;
/* 清除默认的箭头样式 */
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
/* 右侧添加箭头的背景图 自行调整位置 */
background: url(‘img/xia.png‘) 210px center no-repeat #fff;
}
文章标题:如何用css样式修改select下拉箭头默认样式
文章链接:http://soscw.com/index.php/essay/69061.html