gpt4 book ai didi

html - 如何在不使用单选按钮或复选框的情况下将是/否答案编程为 HTML 表单中的按钮?

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

如何在网络表单中编写以下程序:

你是男的还是女的?

enter image description here

最佳答案

您可以模拟使用单选按钮的标签。

input[type="radio"] {
display: none;
}

label {
padding: 10px 20px;
background-color: orange;
border: thin solid darkorange;
border-radius: 10px;
margin:5px;
display: inline-block;
}

input[type="radio"]:checked + label {
background-color: darkblue;
cursor: default;
color: #E6E6E6;
}
<input id="toggle-on" name="toggle" type="radio">
<label for="toggle-on">On</label>
<input id="toggle-off" name="toggle" type="radio">
<label for="toggle-off">Off</label>

关于html - 如何在不使用单选按钮或复选框的情况下将是/否答案编程为 HTML 表单中的按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44483070/

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