Heim >Web-Frontend >HTML-Tutorial >解决手机浏览器和微信中select中border:none;无用和去掉小三角_html/css_WEB-ITnose

解决手机浏览器和微信中select中border:none;无用和去掉小三角_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:33:371346Durchsuche

设置select的边框为none;在PC端是没有问题的,但是放到手机浏览器和微信里上还是会出现边框

解决办法:

1 appearance:none;2 -moz-appearance:none; /* Firefox */3 -webkit-appearance:none; /* Safari 和 Chrome */

appearance使用方法

1 .elmClass{2  -webkit-appearance: value;3  -moz-appearance: value;4  appearance: value;5 }

例子:使用appearance属性改变元素的外观

1 <p class="lookLikeAButton">我是一个段落P元素 </p>2 <p class="lookLikeAListbox">我是一个段落P元素 </p>3 <p class="lookLikeAListitem">我是一个段落P元素 </p>4 <p class="lookLikeASearchfield">我是一个段落P元素 </p>5 <p class="lookLikeATextarea">我是一个段落P元素 </p>6 <p class="lookLikeAMenulist">我是一个段落P元素</p>

 1 /*看起来像个按钮,以按钮的风格渲染*/ 2 .lookLikeAButton{ 3  -webkit-appearance:button; 4  -moz-appearance:button; 5 } 6 /*看起来像个清单盒子,以listbox风格渲染*/ 7 .lookLikeAListbox{ 8  -webkit-appearance:listbox; 9  -moz-appearance:listbox;10 }11 /*看起来像个清单列表,以listitem风格渲染*/12 .lookLikeAListitem{13  -webkit-appearance:listitem;14  -moz-appearance:listitem;15 }16 /*看起来像个搜索框,以searchfield风格渲染*/17 .lookLikeASearchfield{18  -webkit-appearance:searchfield;19  -moz-appearance:searchfield;20 }21 /*看起来像个文本域,以textarea风格渲染*/22 .lookLikeATextarea{23  -webkit-appearance:textarea;24  -moz-appearance:textarea;25 }26 /*看起来像个下接菜单,以menulist风格渲染*/27 .lookLikeAMenulist{28  -webkit-appearance:menulist;29  -moz-appearance:menulist;30 }

 

 

更多内容可以参考http://www.w3school.com.cn/cssref/pr_appearance.asp

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn