牛骨文教育服务平台(让学习变的简单)
博文笔记

html select css美化

创建时间:2013-09-25 投稿人: 浏览次数:12952

html:

<select name="bbxb" id="selecte" class="shortselect">
																<option value="">---请选择--</option>
																<option value="0" selected="selected">男</option>
																<option value="1">女</option>
																												 </select>


 

css:

 

.shortselect{
	background:#fafdfe;
	height:28px;
	width:180px;
	line-height:28px;
	border:1px solid #9bc0dd;
	-moz-border-radius:2px;
	-webkit-border-radius:2px;
	border-radius:2px;
}


 

声明:该文观点仅代表作者本人,牛骨文系教育信息发布平台,牛骨文仅提供信息存储空间服务。