代码之家  ›  专栏  ›  技术社区  ›  Ali Sheikhpour

标记为无效属性值的最大宽度

  •  -1
  • Ali Sheikhpour  · 技术社区  · 7 年前

    我有一个简单的DIV和内联样式 max-width:100%; . doctype是 <!DOCTYPE HTML> 但chrome控制台将其标记为无效的属性值(chrome版本:67.0.3396.99)。您可以检查以下代码段输出:

    <div id="signupDiv" style="width:300px;max-width:l00%;margin:auto">
    Inspect the problem here
    </div>
    2 回复  |  直到 7 年前
        1
  •  3
  •   Ajaj Rajguru    7 年前

    <div id="signupDiv" style="width:300px;max-width:l00%;margin:auto">
    Inspect the problem here
    </div>
    

    <div id="signupDiv" style="width:300px;max-width:100%;margin:auto">
    Inspect the problem here
    </div>
    

        2
  •  -1
  •   Anurag Tiwari    7 年前

    <div id="signupDiv" style="width:300px;max-width:100%;margin:auto">