gpt4 book ai didi

html - CSS 全高 float 图例

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

我正在尝试创建一个 CSS 样式表来使字段集不那么难看。

我正在尝试将左侧 float 的 legend(红色)与右侧的所有单选选项一起使用。目前看起来是这样的:

enter image description here

我对上面的内容很满意,但是当我缩小浏览器窗口大小时出现问题。我希望 label 的高度增加,标签文本换行。不幸的是,整个事情被推到下一行(在 legend 之下),像这样:

enter image description here

我相信这里的解决方案是使 float 的 legend 具有 100% 的高度。

我知道这个问题的常见解决方案是在父 div 上应用 overflow: auto 并将 height: 100% 应用到 float 元素,但这不是似乎在这里工作。

我的 HTML 是:

<!DOCTYPE html>
<html lang="en">

<head>

<meta charset="utf-8" />
<title>Test page</title>
<meta name="viewport" content="width=device-width, initial-scale=1">

<link rel="stylesheet" href="screen.css" type="text/css" />

</head>

<body>

<fieldset class="radioquestion">
<legend>Sample question?: </legend>
<div class="radioanswers">
<div class="radioanswer">
<input type="radio" name="question1" id="question1answer1" value="answer1" required="true"/>
<label class="radiolabel">Here is a sample answer 1<label>
</div>
<div class="radioanswer">
<input type="radio" name="question1" id="question1answer2" value="answer2" required="true"/>
<label class="radiolabel">A second sample answer is this one. This is a long answer.</label>
</div>
<div class="radioanswer">
<input type="radio" name="question1" id="question1answer3" value="answer3" required="true"/>
<label class="radiolabel">And a third.</label>
</div>
</div>
</fieldset>

</body>

</html>

我的 CSS 是:

.radioquestion{
margin: 0 0 10px 0;
padding: 0 0 0 0;
border: 0;
background-color: yellow;
overflow: auto;
}

.radioquestion legend{
float: left;
display: block;
margin: 0 10px 0 0;
padding: 0 0 0 0;
width: 200px;
height: 100%;
text-align: right;
background-color: red;
}

.radioanswers{
float: left;
background-color: blue;
}

.radioanswer label{
width: initial;
background-color: white;
text-align: left;
}

.radioanswer{

}

input[type="radio"]{
float: left;
width: initial;
margin-right: 10px;
vertical-align: middle;
}

最佳答案

.radioanswers 中删除 float: left 并添加 overflow: hidden 代替:

.radioanswers {
/* float: left; */
overflow: hidden;
}

Working example on JSFiddle.

关于html - CSS 全高 float 图例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36114297/

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