gpt4 book ai didi

html - CSS 和单选按钮

转载 作者:太空宇宙 更新时间:2023-11-04 15:12:02 25 4
gpt4 key购买 nike

我很接近,但我无法让我的单选按钮在标签旁边对齐。我已经将 CSS 更改了一百万次,但我似乎无法让所有的文本框、单选按钮和评论框彼此对齐。具体来说,第二个单选按钮与其余内容不一致。

有什么想法吗?欣赏它!

这是实际的代码:http://jsfiddle.net/NpJ55/

我的 html 和 css:

<fieldset>
<label for="name" class="formlabel">Name:</label>
<input id="fName" name="name" type="text" class="forminput" />

<label for="co" class="formlabel">Company:</label>
<input id="fCo" name="co" type="text" class="forminput" />

<label for="email" class="formlabel">Email:</label>
<input id="fEmail" name="email" type="text" class="forminput" />

<label for="phone" class="formlabel">Phone:</label>
<input id="fPhone" name="phone" type="text" class="forminput" />

<label for="contact" class="formlabel">Contact:</label>
<div id="radio_form">
<input id="radio_form_1" name="Sales" type="radio" value="Sales" />
<label for="radio_form_1">Sales</label>
<input id="radio_form_2" name="Technical" type="radio" value="Technical" />
<label for="radio_form_2">Technical</label>
</div>

<label for="name" class="formlabel">Comments:</label>
<textarea name="comments" rows="5" cols="50" class="forminput"></textarea>
<input id="submit" name="submit" type="submit" class="forminput" value="Submit" />
</fieldset>

.formlabel {
clear:left;
display:block;
float:left;
margin:0 0 1em 0;
padding:0 0.5em 0 0;
text-align:right;
width:8em;
}

.forminput {
float:left;
margin:0 0.5em 0.5em 0;
}

fieldset {
-webkit-border-radius:8px;
-moz-border-radius:8px;
border-radius:8px;
}

input, textarea {
-moz-border-radius:5px;
border-radius:5px;
border:solid 1px #999;
padding:2px;
}

#submit {
background:grey;
height:30px;
width:100px;
border:1px;
color:white;
font:family:Arial;
font-weight:bold;
font-size:15px;
cursor:pointer;
}

#submit:hover {
background:#4498e1;
}

#radio_form input {
float: left;
}
#radio_form label {
float: left;
}
#radio_form label + input {
clear: both;
}

最佳答案

嗯 - 无需进行太多更改... http://jsfiddle.net/billymoon/NpJ55/3/

#radio_form{
float: left;
}

并删除 #radio_form ... 规则!

关于html - CSS 和单选按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18794755/

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