gpt4 book ai didi

html - 在 html 中混合 radio 和选中的按钮

转载 作者:可可西里 更新时间:2023-11-01 15:02:27 27 4
gpt4 key购买 nike

我想混合单选按钮和选中按钮,就像我在这里设计 B https://ux.stackexchange.com/questions/70531/using-mixed-radio-and-checkbox-buttons-is-there-any-efficiency-or-usability-ga

但我只能弄清楚如何单独做:

<input class="radio-input" type="radio" name="result" value="names" />
<label class="radio-label">Get names of people starting with..</label>
<input type="checkbox" id="A" name="name[]" value="n">
<label for="A">A</label>
<input type="checkbox" id="B" name="name[]" value="n">
<label for="B">B</label>

我怎样才能像设计 B 那样做到这一点?

最佳答案

您必须将它们放入单独的 div 中,然后使用 CSS 样式将它们对齐以彼此相邻。

.no-bullets {
list-style:none;
}
   
<h2>first row</h1>


<ul class = "no-bullets">
<li> <input type="radio" name="name"></li>
<li> <input type="radio" name="name"></li>

<ul class = "no-bullets">
<li><input type="checkbox" name="sex"></li>
<li><input type="checkbox" name="sex"></li>
<li><input type="checkbox" name="sex"></li>
</ul>
</ul>
</div>

关于html - 在 html 中混合 radio 和选中的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44057515/

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