为什么我的网站右侧会出现保证金?

时间:2013-09-18 10:22:24

标签: css html5 web margin

希望有人能帮助回答我的问题,它真的开始让我烦恼!

该网站位于http://www.calypsopretattoo.com/

当你点击about标签时会出现信息,但页面右侧会出现一个边距并产生一个巨大的空白区域?

我已尝试多次编辑css但没有。有任何想法吗??

3 个答案:

答案 0 :(得分:1)

#aboutp
{
width:100%;
}

导致问题..删除它......:)

答案 1 :(得分:1)

删除此width:100%;表单#aboutp ID

答案 2 :(得分:0)

父母div错过了相对位置。

您使用绝对位置而不使用相对于父div的位置

div {
    height: 900px;
    width: 1000px;
    overflow: hidden;
    margin-right: 0px;
    position: relative; /*add to inline style or make a class for this parent div*/
}