Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以......就像你可以看到的(这里:http ://www.ulozisko.sk/obrazky/605327/form.jpg ),我的问题是在“收音机”按钮......我想让这个按钮并排。你能帮助我吗?
*性别:
<input type="radio" name="sex" />Male <input type="radio" name="sex" />Female
我猜你正在width为所有input元素设置 a 。您应该排除单选按钮,例如:
width
input
input[type="radio"] { width: auto; }
尝试:
<label for="male">Male</label><input type="radio" name="sex" id="male"/> <label for="female">Female</label><input type="radio" name="sex" id="female"/>