gpt4 book ai didi

html - 列表未正确定位在左浮动字段集周围

转载 作者:太空宇宙 更新时间:2023-11-04 13:07:57 26 4
gpt4 key购买 nike

当fieldset向左浮动时,列表项的元素符号出现在fieldset内部。这种意想不到的效果在 Opera 中尤为明显:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>My title</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
fieldset {
width:50%;
float:left;
}
</style>
</head>
<body>
<fieldset>
<legend>My Field Set</legend>
field set <br />
field set <br />
field set <br />
field set <br />
field set <br />
field set <br />
</fieldset>
surround surround surround surround surround surround surround surround surround surround surround
<ul>
<li>first list
<li>second list
</ul>
</body>
</html>

为了测试,我将 fieldset 设置为 float:right,然后列表项似乎被正确定位。

我该如何解决?

最佳答案

将此添加到 css 中:

ul{
float:left;
}

关于html - 列表未正确定位在左浮动字段集周围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24933789/

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