gpt4 book ai didi

css - div 宽度 100% opera 无滚动条

转载 作者:行者123 更新时间:2023-11-28 18:59:32 25 4
gpt4 key购买 nike

我要IE8,FF的效果:

enter image description here

我的代码

<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>DIV width 100% opera without scrollbar</title>
<style type="text/css">
<!--
html,* {margin:0px; padding:0px; }
html,body {width:100%; height:100%; overflow:hidden;}
-->
</style>
</head>
<body>
<div style="position:relative; height:100%; width:100%; background:#dee; overflow:auto;">
<div style="position:absolute; top:0px; left:0px; height:100%; width:100px; background:#e46;"></div>
<div style="position:absolute; top:0px; left:0px; height:100px; width:2000px; background:#98a;"></div>
</div>
</body>
</html>

最佳答案

您需要学习如何使用 CSS Level 1。对于此类布局,定位不是必需的。

我创建了一个教程来直观地演示 CSS 如何与 float 和边距属性一起工作... http://www.jabcreations.com/web/css/nested-divisible-elements

请记住,如果您想创建一个填充效果,您可以通过像这样向子元素添加边距来避免很多痛苦......

/* Bad */
div.class1 {padding: 4px;}

/* Good */
div.class1 > div {margin: 4px;}

请注意,在我的示例中,> 运算符将选择器限制为第一代除法元素。因此,如果您有第三代部门元素,则不会应用 margin 。它是高度兼容的,此时您应该只考虑对 IE 8.0+ 的兼容性。


<!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>DIV width 100% opera without scrollbar</title>
<style type="text/css">
body, html {border: 0px; margin: 0px; padding: 0px;}

#content
{
background-color: #dee;
}

#head
{
background-color: #98a;
height: 100px;
}

#side
{
background-color: #e46;
float: left;
width: 10%;
}
</style>
</head>

<body>

<div id="head">#head</div>
<div id="side">#side</div>
<div id="content">#content</div>

</body>
</html>

关于css - div 宽度 100% opera 无滚动条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6594486/

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