1

我正在编辑我的 Tumblr 主题,但我遇到了问题。在 Tumblr 中,您必须编辑每种类型的帖子(文字帖子、照片帖子、视频帖子等)。因此,当我编辑文本帖子时,正文已缩小。查看了解:tlicetlac.tumblr.com。身体有一个背景图像和一个嵌入的阴影。在编辑文本之前,身体的阴影填满了整个窗口……现在它只填满了大约一半的窗口。使用 safari 的代码检查器,我观察到身体和阴影一样小,但他的背景填满了窗口。这是身体的CSS

body{
        box-shadow:
        inset 0px 20px 700px black;
        padding:0px;
        background-attachment:fixed;
        background-image:URL("http://cl.ly/image/11340r2A0A24/sfondo%20MAIN.jpeg");
        font-family:Minecraftia;
        padding:0px;
        margin:0px;
    }

我试过设置Height:100%,但它不起作用。

它可能是什么?

4

3 回答 3

1

这对我有用:

#posts {
    list-style-type: none;
    margin-left: 0;
    overflow: hidden; //add this
    padding-left: 0;
}

不是问题的一部分,但您也可以这样做:

.cartello { overflow:hidden; }
.adescrizione,.bdescrizione { overflow:hidden;overflow-y:auto; }
于 2013-08-06T15:34:56.550 回答
0

问题不仅在于body,html也有问题。

只需添加:

html,
body {
    overflow: hidden;
}

如果问题是水平的:

overflow-x: hidden;

或者如果是垂直的:

overflow-y: hidden;
于 2021-07-27T17:55:39.623 回答
-1

将高度 100% 设置为<body><html>

html, body {
    height: 100%;
}

<html>是外部元素,所以这是您要拉伸的元素。

身体填充<html>(the 100%)。

于 2013-08-06T15:32:09.523 回答