html+css 去掉select自带的边框和小三角

css代码

#selected{
width: 100%;
height: 100%;
background-color: #f54545;
color: white;
/* 去掉三角 */
appearance:none;
-moz-appearance:none; /* Firefox */
-webkit-appearance:none; /* Safari 和 Chrome */
/* 去掉边框 */
  	border: 0;
	display: block;
	position: relative;
}

html代码


html+css 去掉select自带的边框和小三角_第1张图片

你可能感兴趣的:(jsp网页学习专栏)