這篇文章給大家分享的是有關(guān)HTML5如何實(shí)現(xiàn)Select下拉框右邊加圖標(biāo)的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。
1.那么我們先來(lái)看一下效果吧!
2.再看看h6的結(jié)構(gòu):
<div id="login-div"> <div class="select-wrapper"> <select id="selector1"> <option value="" disabled selected>請(qǐng)選擇系統(tǒng):</option> <option value="1">微信-蘋(píng)果</option> <option value="2">微信-安卓</option> </select> <img src="ossweb-img/arrow.png" alt="" class="arrow" /> </div> <div class="select-wrapper"> <select id="selector2"> <option value="" disabled selected>請(qǐng)選擇渠道:</option> <option value="1">渠道1</option> <option value="2">渠道2</option> </select> <img src="ossweb-img/arrow.png" alt="" class="arrow" /> </div> <div class="select-wrapper"> <select id="selector3"> <option value="" disabled selected>請(qǐng)選擇大區(qū):</option> <option value="1">大區(qū)1</option> <option value="2">大區(qū)2</option> </select> <img src="ossweb-img/arrow.png" alt="" class="arrow" /> </div> <div class="select-wrapper"> <select id="selector4"> <option value="" disabled selected>請(qǐng)選擇角色:</option> <option value="1">角色1</option> <option value="2">角色2</option> </select> <img src="ossweb-img/arrow.png" alt="" class="arrow" /> </div> <p id="notice">單個(gè)帳號(hào)只能領(lǐng)取一次獎(jiǎng)勵(lì)</p> <img src="ossweb-img/comfire1.png" alt="" id="comfire1"/> </div>
3.樣式部分是用了sass進(jìn)行控制的,如果不會(huì)sass也可以換成css。沒(méi)有什么特別的運(yùn)算需要轉(zhuǎn)化,所以換成css也簡(jiǎn)單
@function REM($n){ @return $n/$REM*1rem; } #login-div{ background: url(../ossweb-img/kuang1.png)0 0 no-repeat; background-size: 100% 100%; width: REM(564); height: REM(531); margin-left: REM(38); .select-wrapper{ position: relative; display: flex; justify-content: center; align-items: center; height: REM(50); margin: REM(10) auto; padding-top: REM(15); &>select{ width: REM(458); height: REM(63); padding-left: REM(20); border: 1px solid #23282d; background: #23282d; -webkit-appearance: none; color: #92989f; font-size: REM(24); margin-top: REM(75); border-radius: 0; z-index:10; } .arrow{ position: absolute; width: REM(41); height: REM(30); top: REM(65); right: REM(80); pointer-events: none; z-index:11; } } #notice{ font-size: REM(20); color: #92989f; text-align: center; margin-top: REM(75); } #comfire1{ width: REM(220); height: REM(78); margin-top: REM(20); margin-left: REM(174); } }
4.解析:主要是.arrow這個(gè)元素進(jìn)行右邊那個(gè)圖標(biāo)的位置控制。利用position: absolute;這個(gè)屬性控制好位置,就基本沒(méi)有問(wèn)題了。
感謝各位的閱讀!關(guān)于“HTML5如何實(shí)現(xiàn)Select下拉框右邊加圖標(biāo)”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
文章名稱(chēng):HTML5如何實(shí)現(xiàn)Select下拉框右邊加圖標(biāo)-創(chuàng)新互聯(lián)
網(wǎng)頁(yè)URL:http://www.chinadenli.net/article32/dspssc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站營(yíng)銷(xiāo)、全網(wǎng)營(yíng)銷(xiāo)推廣、電子商務(wù)、用戶(hù)體驗(yàn)、品牌網(wǎng)站制作、網(wǎng)站設(shè)計(jì)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容