gpt4 book ai didi

html - IE7
  • 元素符号或数字显示在 div 之外
  • 转载 作者:太空狗 更新时间:2023-10-29 14:13:46 38 4
    gpt4 key购买 nike

    我遇到了 IE7 列表元素错误问题。和 的元素符号(或数字)显示在页边距之外。我该如何为 IE 解决这个问题?从我读过的内容来看,在 IE7 li 中指定高度/宽度时,这似乎是一个问题。图片可以在这里找到:

    火狐:

    Firefox

    IE7:

    IE7

    我有一个带有 Meyer 重置的样式表。

    #create_request li {
    display: list-item;
    width: 313px;
    height: 23px;
    background-color: #E3E3E3;
    list-style: decimal;
    list-style-position: inside;
    padding-left: 25px;
    padding-top: 5px;
    }

    #create_request li.alternate {
    background-color: white;

    }

    #create_left li:hover {
    width: 356px;
    background: url('/images/list_add.png') 100% 100% no-repeat;
    background-color: #B0B0B0;
    cursor: pointer;
    }

    最佳答案

    From what I've read this seems to be a problem when specifying the height/width in an IE7 li.

    没错。设置 width<ol>而不是 <li>并使用 line-height而不是 height<li> 上.

    #create_request ol {
    width: 313px;
    }

    #create_request li {
    line-height: 23px;
    ...
    }

    关于html - IE7 <li> 元素符号或数字显示在 div 之外,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6076730/

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