隐藏select边框及下拉箭头方法

本文展示了如何使用CSS来定义和应用样式于Select元素,包括宽度设置和Select外层容器的样式调整,实现美观且功能性的选择框设计。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

CSS样式:

复制代码
    .width5
    {
        width: 50px;
    }  
    .width6
    {
        width: 60px;
    }  
    .width7
    {
        width: 70px;
    }  
    .width8
    {
        width: 80px;
    }  
    .width9
    {
        width: 90px;
    }  
    
/*套在Select外层,用于隐藏Select框*/
.DivSelect
{
    float:left;
    position: relative;
    background-color: transparent;
    height: 17px;
    overflow: hidden; /*隐藏了小三角,宽度为比select宽度少20px*/
    border-width:0px;
    border-top-style: none; 
    border-right-style: none; 
    border-left-style: none; 
    border-bottom-style: none;
}

/*设置Select样式*/
.SelectList
{
    position: relative;
    background-color: transparent;
    TOP:   -2px;
    left:-2px;
    border-width: 0px;
    border-top-style: none; 
    border-right-style: none; 
    border-left-style: none; 
    border-bottom-style: none;
    display:block;
    height: 20px;
    overflow:hidden;
}
复制代码

 

前台代码:

                        <div class="DivSelect width5">
                            <select  class="SelectList width7">
                                <option>双铜纸</option>
                                <option>双胶纸</option>
                            </select>
                        </div>

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值