gpt4 book ai didi

css - 如何使用 CSS 缩进选择下拉菜单中的文本

转载 作者:行者123 更新时间:2023-11-28 08:49:21 24 4
gpt4 key购买 nike

如何使用 CSS 缩进选择下拉菜单中的类别和无穷无尽的子类别?

   1. Apple
2. Arts & Entertainment
1. Amusement
2. Art
3. Artists
1. A
1. a1
2. a2
2. B
3. C
4. D
3. Automotive
4. Network
5. Server
6. Web Design
1. CSS
2. HTML

最佳答案

您不能使用 <select> 执行此操作元素。你不能像你建议的那样有无穷无尽的嵌套子类别,只有一个,<optgroup> .样式设置也很困难,因为不同浏览器的表单元素样式设置不同。

但是,根据您的需要,以下解决方案可能有效:

为此,我们正在重新创建 select使用 HTML 列表的元素。标记看起来像这样:

<div id="select">
<p>Select your Answer</p>
<ul>
<li><a href="#">Apple</a></li>
<li><a href="#">Arts and Entertainment</a>
<ul>
<li><a href="#">Amusement</a></li>
<li><a href="#">Art</a></li>
<li><a href="#">Artist</a>
<ul>
<li><a href="#">A</a></li>
<li><a href="#">B</a></li>
</ul></li>
</ul>
</li>
</ul>
</div>

然后,使用 CSS 对其进行样式设置以符合您的目的:

#select {
border: 1px solid #999;
background-color: rgba(0, 0, 0, 0.1);
position: absolute;
width: 300px;
font-family: Arial, sans-serif;
font-size: 11px;
}

#select:hover {
background-color: #efefef;
}

#select > ul {
display: none;
list-style: none;
}

#select:hover > ul {
display: block;
}

#select > ul ul {
margin-left: 20px;
}

#select > ul a, #select > p {
display: block;
padding: 3px 8px 4px;
color: #333;
text-decoration: none;
}

#select > ul a:hover {
background-color: #ddd;
}

在这里试一试:http://jsfiddle.net/thHFS/

关于css - 如何使用 CSS 缩进选择下拉菜单中的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3481966/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com