百分百源码网-让建站变得如此简单! 登录 注册 签到领金币!

主页 | 如何升级VIP | TAG标签

当前位置: 主页>网站教程>html5教程> html select下拉框样式怎么制作?html select样式详解
分享文章到:

html select下拉框样式怎么制作?html select样式详解

发布时间:09/01 来源:未知 浏览: 关键词:
本篇文章主要的介绍了关于HTML select标签的下拉框制作,还有HTML select标签的样式解析,最后还有两个html select标签的案例。接下来让我们一起看看本篇文章吧

第一我们先来看看html select下拉框样式的制作:

原生的select下拉框其实挺利便的,直接把选项写入option就能得到一个流畅的下拉框,但是原生的样式也是让人忧闷。

第一,在各大阅读器中渲染出来的样式结果也是多样化,ie下的样式更是不同凡响,会按照选项位置停止滑动。

我们这里是用纯HTML制作,连层叠样式表也不要:

<!doctype html>
<html >
<head>
    <meta charset="UTF-8">
    <script type="js/index.js"></script>
    <title>百分百源码网之下拉列表</title>
</head>
<body >
<form>
<p>下拉列表</p>
<select>
<option>html</option>
<option>php</option>
<option>python</option>
<option>其它</option>
        <option>html</option>
<option>php</option>
<option>python</option>
<option>其它</option>
</select>
</form>
</body>
</html>

这个我点开之后的结果图:

tuyi.png

我们已经把HTML select的下拉框已经制作完成了,接下来我们看看HTML select的其它样式思绪:

1.先去除select本身原有的样式。

2.用一个元素(div/lebal等)作为select的父元素。

3.在select父元素后面用:after做一个新的样式。

<body>
        <br />
        <select id="selectTravelCity" title="Select Travel Destination">
            <option>百分百源码网</option>
            <option>Washington DC</option>
            <option>Los Angeles</option>
            <option>Chicago</option>
            <option>Houston</option>
            <option>Philadelphia</option>
            <option>Phoenix</option>
        </select>
        <br />
        <br />
        <label id="lblSelect">
            <select id="selectPointOfInterest" title="Select points of interest nearby">
                <option>PHP中文网</option>
                <option>food beverage</option>
                <option>restaurant</option>
                <option>shopping</option>
                <option>taxi limo</option>
                <option>theatre</option>
                <option>museum</option>
                <option>computers</option>
            </select>
        </label>
</body>

这么多,虽然不是很难,但是还是要多练习的

看了上面的图片,这个的结果图也很容易能想到吧,不外我还是会给结果图的:

tuer.png

HTML select标签的两个案例剖析:

案例一:怎样让html里的select没法选中?

假设有一个select,里面有几个option,由于测试需要,要牢固成为其中的一个option,不克不及选中其他,该如何做呢?假如disabled这个select,结果就是基本没法取到值了。有没其他的办法?readonly,也是不成以的,照旧可以选中。

答案:只放一个option就可以了 或者给option加上disabled="disabled"

<form id="form1" name="form1" method="post" action="">
  <select name="select">
    <option>aa</option>
<option disabled="disabled">bb</option>
<option>cc</option>
  </select>
</form>

案例二:如何调整select的宽度?

答案:可以在select标签中参加style样式

<style>.s1{ width: 200px;}</style>
<select class="s1">
  <OPTION>很长很长也能显示</OPTION>
  <OPTION>很长很长也能显示</OPTION>
</select>

以上就是这篇文章的全部内容了,有什么疑问欢迎鄙人方发问。

【小编引荐】

html5 canvas标签是啥意思?canvas标签使用办法介绍

HTML中插入文本ins标签和删除文本del标签怎样一起使用?(附实例)

以上就是html select下拉框样式如何制作?html select样式详解的具体内容,更多请关注百分百源码网其它相关文章!

打赏

打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

百分百源码网 建议打赏1~10元,土豪随意,感谢您的阅读!

共有153人阅读,期待你的评论!发表评论
昵称: 网址: 验证码: 点击我更换图片
最新评论

本文标签

广告赞助

能出一分力是一分吧!

订阅获得更多模板

本文标签

广告赞助

订阅获得更多模板