gpt4 book ai didi

javascript - 如何强制 IE 在其浏览器窗口中将两个 div 框并排放置?

转载 作者:行者123 更新时间:2023-11-28 09:06:50 25 4
gpt4 key购买 nike

我已经为我的网站做了一个非常基本的布局。现在该网站在 Chrome、Mozila 和 Opera 中得到了完美的显示。

但唯一剩下的问题是 IE。由于我的浏览器窗口中有两个并排放置的框,IE 会打断它们并将一个放在另一个下方,这是我绝对不想要的。

如何摆脱这个麻烦?

[注意:我还没有在网络服务器上发布我的网站。我只是在我的本地主机上运行它]

以下是我的完整代码:

.PHP:

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>My site</title>
<link rel="stylesheet" href="style.css">

</head>



<body>

<div id="big_wrapper">

<header id="top_header">
<h1>My site</h1>


</header>

<nav id="top_menu">
<ul>
<li>Opening Hours</li>
<li>Registration</li>
</ul>

</nav>
<div id="new_div">
<section id="main_section">



<article>


<hgroup>
<header>
<h1>Title of article1</h1>
<h2>subTitle of article1</h2>

</header>
</hgroup>



<p>This is a best aricle1</p>

<footer>

<p> Written by...1</p>
</footer>

</article>


<article>


<hgroup>
<header>
<h1>Title of article2</h1>
<h2>subTitle of article2</h2>

</header>
</hgroup>



<p>This is a best aricle2</p>

<footer>

<p> Written by...2</p>
</footer>

</article>


</section>

<aside id="side_news">


<h4>News</h4>
Put your news

</aside>
</div>

<footer id="the_footer">


Put your footer

</footer>

</div>

</body>


</html>

.CSS:

*{
margin:0px;
padding:0px;
}
h1{

font:bold 20px Tahoma;
}
h2{

font:bold 14px Tahoma;
}
header,section,footer,aside,nav,article,hgroup{
display:block;

}
body{
width:100%;
display:-webkit-box;
display:-moz-box;
display:-ms-box;
box-pack:center;
-webkit-box-pack:center;
-moz-box-pack:center;
-webkit-box-pack:center;
-ms-box-pack:center;
/*
text-align:center;
*/
}


#big_wrapper{
max-width:1200px;
margin-top:20px;


display:-webkit-box;
display:-moz-box;
display:-ms-box;
box-orient:vertical;
-webkit-box-orient:vertical;
-moz-box-orient:vertical;
-ms-box-orient:vertical;
box-flex:1;
-webkit-box-flex:1;
-moz-box-flex:1;
-ms-box-flex:1;


}
#top_header{
background:yellow;
border:3px soild gray;
padding:20px;

}
#top_menu{
border:green;
background:gray;
color:white;
}
#top_menu li{
display:inline-block;
list-style:none;
padding:5px;
font:bold 14px Tahoma;

}

#new_div{
display:-webkit-box;
display:-moz-box;
display:-ms-box;
box-orient:horizontal;
-webkit-box-orient:horizontal;
-moz-box-orient:horizontal;
-ms-box-orient:horizontal;

}

#main_section{
border:1px solid blue;
box-flex: 1;
-webkit-box-flex: 1;
-moz-box-flex: 1;
-ms-box-flex: 1;

margin:20px;
padding:20px;


}

#side_news{
border:1px solid blue;
width:220px;

margin:20px 0px;
padding:30px;
background:#66CCCC;

}

#the_footer{

text-align:center;

padding:20px;
border-top:2px solid green;
}

最佳答案

问题在于框的 float 和显示状态

试试这个,它应该工作正常.. http://jsfiddle.net/4sdvk8gL/

*{
margin:0px;
padding:0px;
}
h1{

font:bold 20px Tahoma;
}
h2{

font:bold 14px Tahoma;
}
header,section,footer,aside,nav,article,hgroup{
display:block;

}
body{
width:100%;
display:-webkit-box;
display:-moz-box;
display:-ms-box;
box-pack:center;
-webkit-box-pack:center;
-moz-box-pack:center;
-webkit-box-pack:center;
-ms-box-pack:center;
/*
text-align:center;
*/
}


#big_wrapper{
max-width:1200px;
margin-top:20px;


display:-webkit-box;
display:-moz-box;
display:-ms-box;
box-orient:vertical;
-webkit-box-orient:vertical;
-moz-box-orient:vertical;
-ms-box-orient:vertical;
box-flex:1;
-webkit-box-flex:1;
-moz-box-flex:1;
-ms-box-flex:1;


}
#top_header{
background:yellow;
border:3px soild gray;
padding:20px;

}
#top_menu{
border:green;
background:gray;
color:white;
}
#top_menu li{
display:inline-block;
list-style:none;
padding:5px;
font:bold 14px Tahoma;f

}

#new_div{
display:block;
display:-moz-box;
display:-ms-box;
box-orient:horizontal;
-webkit-box-orient:horizontal;
-moz-box-orient:horizontal;
-ms-box-orient:horizontal;

}

#main_section{
border: 1px solid blue;
-webkit-box-flex: 1;
-moz-box-flex: 1;
-ms-box-flex: 1;
margin: 20px;
padding: 20px;
float: left;
width: calc(75% - 82px);


}

#side_news{
border: 1px solid blue;
width: 220px;
margin: 20px 0px;
padding: 30px;
background: #66CCCC;
float: left;
display: block;
width: calc(25% - 62px);

}

#the_footer{

text-align:center;

padding:20px;
border-top:2px solid green;
}

关于javascript - 如何强制 IE 在其浏览器窗口中将两个 div 框并排放置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26666002/

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