有人能告诉我如何在下面的字段设置样式,以便传奇和无线电按钮都在一条线上吗?
<fieldset>
<legend>Are you from planet earth?</legend>
<label><input type="radio" name="answer"/>Yes</label>
<label><input type="radio" name="answer"/>No</label>
</fieldset>发布于 2015-11-17 00:54:17
CSS:
legend {
float: left;
}发布于 2015-11-17 00:44:12
这会管用的。把它们放左边。也许是个更好的方法,但效果很好。
<fieldset>
<legend style='float:left'>Are you from planet earth?</legend>
<label style='float:left'><input type="radio" name="answer"/>Yes</label>
<label style='float:left'><input type="radio" name="answer"/>No</label>
</fieldset>发布于 2020-06-04 22:15:45
答案有点陈腐。float: left;将工作,但可能会导致其他布局问题,并需要清除后续容器上的浮点。
目前,flexbox或CSS布局都有很好的现代浏览器支持。
https://stackoverflow.com/questions/33747229
复制相似问题