0

注意:在我发布我的问题之前,我已经搜索了这个网站以获得答案,但我找不到任何可以让我设置相等的百分比值边距的解决方案。

以下代码未缩放到完整的 25%:

请参阅下面的示例 HTML 代码:

<style>

#Wrapper {
    margin:0 auto;
    width:70%;
}

#MainLogo{
    width:100%;
    height:100px;
    border:1px solid #000;
}

#LeftSide{
    width:25%;
    height: 600px;
    background-color:#90F;
    margin-top:5px;
    float:left;
}

#FloatLeft {
    float:left;
}

#One{
    width:25%;
    height:300px;
    background-color:#000;
    margin-top:5px;
    float:left;
}

#Two{
    width:25%;
    height:300px;
    background-color:#F00;
    margin-top:5px;
    float:left;

}

#Three{
    width:25%;
    height:295px;
    background-color:#F00;
    margin-top:5px;
    float:left;
    clear:both;
    }

#Four{
    width:25%;
    height:295px;
    background-color:#000;
    margin-top:5px;
    float:left;
}


#RightSide{
    width:25%;
    height: 600px;
    background-color:#00F;
    margin-top:5px;
    float:right;
    margin-bottom:5px;
}

#MainFooter{
width:100%;
    height:100px;
    border:1px solid #000;
    clear:both;
}

</style>


<body>

<div id="Wrapper">

<header id="MainLogo">
Logo Goes here!!
</header>

<aside id="LeftSide">
Left side goes here
</aside>

<div id="FloatLeft">

<aside id="One">
One Goes Here!!
</aside>

<aside id="Two">
Two aside goes here!!
</aside>

<aside id="Three">
Three aside goes here!!
</aside>

<aside id="Four">
Four aside goes here!!
</aside>
</div> 

<aside id="RightSide">
Right side goes here
</aside>

<footer id="MainFooter">
Main Footer Goes here!!
</footer>
</div>
4

1 回答 1

0

它不工作的原因是诸如padding和之类的东西margin。您将需要使用该box-sizing属性来获得所需的效果。

首先,您应该删除所有内容的填充和边距,然后将box-sizing属性设置为border-box. 这将确保无论您拥有多少padding或拥有多少,margin它都将始终停留在您指定的位置。heightwidth

这是一个示例用法

* {
  padding:0;
  margin:0;
  box-sizing-border-box;
}

box-sizing属性尚未完全受支持,因此您需要使用供应商特定的属性

于 2013-07-01T17:49:04.570 回答