使用100%宽度时的空白区域

时间:2015-10-21 02:48:37

标签: html css whitespace removing-whitespace

我和一位朋友正在网站上工作,但由于某些原因,当我使用100%宽度时仍有空白区域。我怎样才能解决这个问题?这些是主要的css元素

#info_container{
height:100%;
width:100%;
display:inline-block;
padding-top:3%;
background-color:#D3D3D3;
}

#main_header {
background: -webkit-linear-gradient(#2a2a2a, #545454);
text-align: center;
align-items: center;
vertical-align: middle;
position: absolute;
width:100%;
height:8%;
margin:-1em;
position:fixed;
display: table;
width: 100%;
table-layout: fixed;
/* For cells of equal size */
}

JSFiddle

2 个答案:

答案 0 :(得分:1)

第一个最佳做法是放置通用选择器* { padding: 0; margin: 0;} 避免边距和填充溢出。

我更新了您的fiddle

对CSS的更改

* { padding: 0; margin: 0; }

#main_header {
    background: -webkit-linear-gradient(#2a2a2a, #545454);
    text-align: center;
    align-items: center;
    vertical-align: middle;
    position: absolute;
    width:100%;
    position:fixed;
    display: table;
    width: 100%;
    table-layout: fixed;
    /* For cells of equal size */
}
#main_header a {
    display:inline-block;
    text-decoration:none;
    color:#567aa9;
    display: table-cell;
    vertical-align: middle;
    padding:.5%;
}
a span {
    text-decoration:none;
    color:#878787;
    font-size:55px;
    top: 10%;
    overflow: hidden;
    left:50%;
}
.a1:hover {
    color:#bababa;
}
.a2:hover{
    color:#bababa;
}
.a3:hover{
    color:#bababa;
}
.a4:hover{
    color:#bababa;
}
#info_container{
    height:100%;
    width:100%;
    display:inline-block;
    padding-top:7%;
}
html {
    font-size: 62.5%;
}

body {
    font-size: 1em;
}

@media (max-width: 300px) {
    html {
        font-size: 70%;
    }
}

@media (min-width: 500px) {
    html {
        font-size: 80%;
    }
}

@media (min-width: 700px) {
    html {
        font-size: 120%;
    }
}

@media (min-width: 1200px) {
    html {
        font-size: 200%;
    }
}
#info_container{
    height: 100px; // changed this from 100%;
    width:100%;
    padding-top: 3%; // removed
    display:inline-block;
    background-color:#D3D3D3;
}

编辑:更新了提示

答案 1 :(得分:0)

对此有一个非常简单的解决方法。您的文本背景颜色在整行上都有,因此要仅在信息容器的文本区域中进行设置,只需将该文本放入span类中即可。现在只需从原始类中删除该背景颜色并将其放入您的范围内!如果你将它放到另一个css文件中,你可以给一个跨度的类,但我把它直接放在这里的html中。

<p><span style="background-color:red;">Hello World</span></p>