左浮动在 IE7 中不起作用,但在 IE8 sharepoint .aspx 页面中起作用

发布于 2025-01-08 20:08:56 字数 1050 浏览 2 评论 0原文

div 的三个块将包含文本,其中块 1 和 2 是可选的。在这种情况下,我想使用 float:left 对齐 div 以避免 div 之间有额外的空间。这是我使用的代码。这段代码在 IE8 中工作正常,但在 IE7 中不行。我已经浏览了这篇文章div 中的左浮动在 IE7 中不起作用,但在 Firefox 和 IE8 中起作用。但它不起作用。

代码:

  <div style="width:1120px;overflow:auto">
   <div id="_invisibleIfEmpty" name="_invisibleIfEmpty" 
      style="overflow:hidden; vertical-align:text-top; float:left;height:100%;width:33%;display:table-row"> 
                Block 1 </div >
 <div id="_invisibleIfEmpty" name="_invisibleIfEmpty"

    style="overflow:hidden;vertical-align:text-top;padding-left:5px;height:100%;width:33%;float:left;display:table-row;"> 
                Block 2</div >
 <div id="_invisibleIfEmpty" name="_invisibleIfEmpty" style="overflow:hidden;vertical-align:text-top;padding-left:5px;height:100%;width:33%;float:left;display:table-row"> 
                Block 3 </div >

There are three blocks of div which will contain text, where block 1 and 2 are optional. in that case i want to align the div using float:left to avoid extra space between the div. here is the code im using. this code is working fine in IE8 but not in IE7. i have gone through the post Float left in a div does not work in IE7 but does in Firefox and IE8. but it is not working.

Code:

  <div style="width:1120px;overflow:auto">
   <div id="_invisibleIfEmpty" name="_invisibleIfEmpty" 
      style="overflow:hidden; vertical-align:text-top; float:left;height:100%;width:33%;display:table-row"> 
                Block 1 </div >
 <div id="_invisibleIfEmpty" name="_invisibleIfEmpty"

    style="overflow:hidden;vertical-align:text-top;padding-left:5px;height:100%;width:33%;float:left;display:table-row;"> 
                Block 2</div >
 <div id="_invisibleIfEmpty" name="_invisibleIfEmpty" style="overflow:hidden;vertical-align:text-top;padding-left:5px;height:100%;width:33%;float:left;display:table-row"> 
                Block 3 </div >

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

隐诗 2025-01-15 20:08:57

我不知道 ESPN 中的 ASP,但我可以告诉你 1. 标记一团糟,2. 你对 CSS 的思考太多了。

首先,第一个

没有关闭,但这可能是由于您粘贴到 SO 中造成的。其次,三个内部 div 具有相同的 ID - 这是一个禁忌。第三,您的样式都是内联的,这也不理想,但我假设您为了简洁起见将它们粘贴到这里。

您的标记可以大大简化:

  <div id="container">
    <div class="block _invisibleIfEmpty" id="block_1" name="_invisibleIfEmpty" > 
       Block 1 </div>
    <div class="block _invisibleIfEmpty" id="block_2" name="_invisibleIfEmpty"> 
       Block 2</div>
    <div class="block _invisibleIfEmpty" id="block_3" name="_invisibleIfEmpty" > 
       Block 3</div>
  </div>​

然后这个 CSS 应该可以让您到达您需要的位置:

#container {
    width: 1120px; 
    height: 100px;       
}

.block {
    width: 33%;
    float: left; 
    height: 100%;
}​

您可以根据口味调整高度。如果需要,您可以添加溢出值 - 但不需要“overflow:auto”,因为这是 CSS 中的默认值。仅当先前的样式声明了不同的“溢出”值并且您想要撤消该值时,您才需要这样做。

PS:我对此进行了测试,它可以在 IE7 中运行: http://jsfiddle.net/xZ2Az/1/

I don't know ASP from ESPN, but I can tell you 1. the markup is a mess and 2. you're over-thinking the CSS.

First off, the first <div> didn't close, but that may be due to you pasting into SO. Second, the three inner div's have the same ID - which is a no-no. Third, your styles are all inline, which isn't ideal, either, but I'm assuming you're pasting them in here for brevity's sake.

Your markup can be greatly simplified:

  <div id="container">
    <div class="block _invisibleIfEmpty" id="block_1" name="_invisibleIfEmpty" > 
       Block 1 </div>
    <div class="block _invisibleIfEmpty" id="block_2" name="_invisibleIfEmpty"> 
       Block 2</div>
    <div class="block _invisibleIfEmpty" id="block_3" name="_invisibleIfEmpty" > 
       Block 3</div>
  </div>​

And then this CSS should get you where you need to be:

#container {
    width: 1120px; 
    height: 100px;       
}

.block {
    width: 33%;
    float: left; 
    height: 100%;
}​

You can adjust the heights to taste. You can add the overflow values if you want - but you don't need 'overflow:auto' because that is the default in CSS. You only need that if a previous style declares a different 'overflow' value, and you want to undo that.

PS: I tested this and it works in IE7: http://jsfiddle.net/xZ2Az/1/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文