css解决select不能被遮盖和不能设置边框背景补白等样式的问题

来源:互联网 发布:主流社交软件 编辑:程序博客网 时间:2024/05/21 06:18

<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>select</title>
<style type="text/css">
select {
    border: 1px solid #ccc;
    background: none;
    padding: 4px 5px;
    outline: none;
    color: #333;
    *behavior: url(select.htc);
}
select:focus {
    border-color: #79c0f2;
}
</style>
</head>

<body>
<select>
    <option>select</option>
</select>
</body>
</html>

原创粉丝点击