Drop down menu with input box

2019-09-19 18:45发布

How can i make a drop down opton with a input box using css and html .as like this link picture?https://i.stack.imgur.com/W6SEN.jpg

1条回答
smile是对你的礼貌
2楼-- · 2019-09-19 19:39

Modify as your need

<!DOCTYPE html>
    <html lang="en">
    <body>
     <h2>This is what you want </h2>
      <center>
    <select style="height: 36px; border-right: 4px solid; width: 55px; background: transparent;">
    <option value="India">+91</option>
    <option value="India">+92</option>
    <option value="India">+93</option>
    <option value="India">+94</option>
    <option value="India">+01</option>
    </select>
    <input type="text" style="height: 30px; margin-left: -4px; padding-left: 5px;">
    </center>

    </body>
    </html>
查看更多
登录 后发表回答