Hello StackOverflow community, I have run into a problem that quite frankly is baffling me and I am surprised that I haven t run into this problem sooner.
如果我忽略了一个简单的问题,则道歉——我已经做了大量谷歌和StackOverflow搜索,但没有结果。
我的问题是,在将dding子带给离婚时,该集装箱被具体规定的 Firefox/Chrome所吞 stretch,但在IE。 我已看到关于增加“显示:在线;”或“显示:在线锁;”以解决这个问题的建议,但这对我产生了影响。
Here is an rendered example:
例如:
<html>
<head>
<style type="text/css">
#div1 {
background-color:black;
width:400px;
height:300px;
padding-top:10px;
}
#div2 {
background-color:red;
width:400px;
height:280px;
padding-top:10px;
}
#div3 {
background-color:blue;
width:400px;
height:260px;
padding-top:10px;
}
#div4 {
background-color:green;
width:400px;
height:200px;
}
</style>
</head>
<body>
<div id="div1">
<div id="div2">
<div id="div3">
</div>
</div>
</div>
<div id="div4">
</div>
</body>
</html>
我失踪了什么? 希望得到任何帮助。
谢谢。