純css實現select下拉框並排顯示

來源:互聯網
上載者:User

標籤:二次開發   add   選擇   lock   style   下拉框   相互   height   eee   

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>Document</title>    <style>        * {            margin: 0;            padding: 0;        }        select {            text-align: center;            height: 50px;            overflow: hidden;            border: none;            outline: none;            background: #eee;            border-radius: 10px;        }        option{            width: 150px;            height: 40px;            font-size: 20px;            display: inline-block;            border-radius: 10px;            padding-top: 10px;        }    </style></head><body>    <select name="toppings" multiple="multiple">      <option value="mushrooms"  selected="selected">mushrooms</option>      <option value="greenpeppers">green peppers</option>    </select></body></html>

項目需求:讓option選項並排顯示,同時隱去select那醜陋的預設選擇小三角

總結:網上純css改預設樣式的方法看了一些,基本都是一個套路,而且相互抄襲,這倒沒什麼,關鍵是試了一下,不起作用。還有一個套路就是重新布局類比select,因為項目是二次開發,為避免修改前後台表單驗證,沒有採用這個方案。而反觀以上代碼,功能實現了,但有個缺點就是預設選中背景色和點擊選中背景色沒法調整,不知道是否有相應css屬性可以調整,歡迎探討!

純css實現select下拉框並排顯示

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.