gpt4 book ai didi

css - 基于选项选择显示/隐藏内容的纯 CSS 方式?

转载 作者:行者123 更新时间:2023-11-28 12:31:20 25 4
gpt4 key购买 nike

我的问题与此类似:CSS to select another Element based on a HTML Select Option Value

这是我的 HTML:

    <select id="select-card">
<option value=""></option>
<option value="card">**** **** **** 1982</>
</select>
<p>Or enter a new one...</p>

我想隐藏 <p>当用户从列表中选择一张卡片时,并在用户选择空选项时显示它。

这在纯 CSS 中可行吗,还是我需要使用 JavaScript?

最佳答案

使用必需的属性:

<select id="select-card" required>

并为元素编写有效无效的规则,选择以下p-元素:

#select-card:invalid + p { display: block; }
#select-card:valid + p { display: none; }

Fiddle

关于css - 基于选项选择显示/隐藏内容的纯 CSS 方式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28612521/

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