html - 什么?!?除 IE7 之外,div 中的文本无处不在。 IE7 一行一个字?

标签 html css internet-explorer-7

我有一个无序列表,类似于嵌套的 JavaScript 帮助框。您单击帮助主题,一个可滚动的 div 随帮助元素一起出现。这些帮助项是无序列表。

在 FF、Safari、IE6(好吧,出于某种原因,我在 IE6 中得到了一个水平滚动条)和 IE8 中,一切都运行良好。但在 IE7 中,它每行给我一个单词并使滚动条变长以补偿。我搜索过,但还没有看到我要找的东西。在 IE 的开发人员工具中,我觉得没有什么明显的问题,但是当我将它切换到 IE7 模式时,问题在那里复制了。

感谢您的帮助! 乔尔

编辑: 一些代码...

帮助箱:

<div class="helpbox">
     <h2 class="title2a adjust"><a class="nodecoration" href="javascript:animatedcollapse.toggle('collapse1')">Quick Start</a></h2>
     <div id="collapse1" class="helpbox2">

              <ul id="helpbo">
                  <li class="helpchange"><a href="#">Add Items</a></li>
                  <li class="helpchange"><a href="#">Create Timeline</a></li>
                  <li class="helpchange"><a href="#">Set Reminder</a></li>
                  <li class="helpchange"><a href="#">Detailed Help Topics</a></li>
              </ul>
              <hr class="ninetypercent"></hr>

              <div class="instructions helpitems" id="animators">
                <div class="container"><ul>
                <li>Make sure the <b>Monthly</b> tab is highlighted on the top right of the screen.</li>
                <li>Click on the day that you want to add an event.</li>
                <li>You can create a main event-which you can apply a timeline to, or you can create a simple to-do item.</li>
                <li>Fill in the details.  If you are creating a main event, you can add a timeline.  If you don't know how to do that, read the <b>Create Timeline</b> help link above.</li>
                <li>Click <b>Save</b> when you're done.</li>
                <li>Your event or to-do will now show up in your calendar.</li>

                  </ul></div>

                  <div class="container"><ul>
                  <li>Click on the <b>Admin</b> tab on the top right of the screen.</li>
                  <li>In the main display, next to <b>Manage</b> click <b>Add Timeline</b></li>
                  <li>A new blank timeline template will appear.</li>
                  <li>Give a descriptive title of your timeline. You can always go back and edit things later if you need to.</li>
                  <li>The first column, <b>Days From Event</b>, is the number of days before or after the main event that you want the to-do item to happen.  It must be a number-negative numbers for the days before the event and positive number for days after the event.</li>
                  <li>Fill in the <b>Days From Event</b>, the <b>Title</b> and <b>Description</b> of each to-do item you want to create.</li>
                  <li>Click <b>Add More To-Do Items</b> to add another item.  Add as many items as you need.</li>
                  <li>If you have added <b>Team Members</b>, you can assign tasks to members in the <b>assigned to</b> column.</li>
                  <li>When you have finished your new timeline, click <b>Save Timeline</b>.</li>
                  <li>Your new timeline is now ready to be applied to your main events</li>
                  </ul></div>

                  <div class="container"><ul>
                  <li>You can set a reminder for a main event or a to-do item.</li>
                  <li>Make sure the <b>Monthly</b> tab is selected on the top right of the screen.</li>
                  <li>First, <b>Create or Select</b> the event that you want to set a reminder for.</li>
                  <li>If you have selected an existing event, click <b>Edit Event</b>.</li>
                  <li><b>Click</b> the <b>Checkbox</b> next to the word <b>Reminder</b>. </li>
                  <li>Set the date and time you'd like your reminder, and you'll get an email reminder then.</li>

                  </ul></div>

                  <div class="container"><ul>
                                    <li>For more detailed help on specific features, please click on the <b>Help</b> tab at the top right of the screen.</li>
                                    <li>There, you will find several <b>Tutorial Videos</b> That can walk you through more of the complex features.</li>

                  </ul></div>


              </div>
            <div class="closebutton">
                 <a href="javascript:animatedcollapse.toggle('collapse1')">close</a>
            </div>


      </div>
</div>

我正在使用 jQuery 和 animated.collapse 库。

js代码为:

<script type="text/javascript">
//<![CDATA[
  document.documentElement.className += " js"; // Add js class to the HTML element
  $(function(){
    var $containers = $("#animators > div").hide();

    $('ul#helpbo li a').each(function(i,el){
      var idx = i;
      $(this).click(function(e){
        var $target = $containers.filter(':eq(' + idx + ')');
        // Fade out visible div
        if($containers.filter(':visible').not($target).length){
          $containers.filter(':visible').fadeOut(500, function(){
            $target.not(':visible').fadeIn(500);
          });
        } else {
          $target.not(':visible').fadeIn(500);
        }

        e.preventDefault();
      })
    })
  });


$(".helpchange").click(function() {
  $(".changinghelp").removeClass("changinghelp");
  $(this).addClass("changinghelp");
});

//]]>

最佳答案

另一个愚蠢的菜鸟问题。我没有为那些内部列表声明宽度。它在其他浏览器上运行良好,因为它只是继承,但在 IE7 中却不行

关于html - 什么?!?除 IE7 之外,div 中的文本无处不在。 IE7 一行一个字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2090898/

相关文章:

html - 是否可以移动复选框的 "box"?

android - 如何使用 pixate (android) 设置按钮样式

html - :first-child selector not working on li (list item)

jquery - IE7 Jquery UI Sortable问题

internet-explorer-7 - Twitter Bootstrap对IE7的支持

android 2.3.3 固定页脚问题

HTML 在错误的位置显示行

javascript - 如何删除按钮内的标签,

css - 如何正确清除此设计?

javascript - IE7 不读取 CSS 和 JS 包