如何使整个布局适应窗口大小?

发布于 2024-11-18 02:39:06 字数 135 浏览 3 评论 0原文

我终于按照我想要的方式设计了我的 tumblr!背景图像是为仅在中心部分阅读的文本而构建的。唯一的问题是,当浏览器窗口小于最大化时,文本和标题都会进行调整,但背景保持不变。有谁知道如何在 html 代码中解决这个问题(具体细节会很好,我对此完全陌生)谢谢!

I have finally designed my tumblr the way I want it! The background image is built for the text to read only in the center section. The only problem is when the browser window is anything smaller than maximized, both the text and header adjusts to it but background stays the same. Does anyone know how to fix this in the html code (specifics would be nice, I'm totally new to this) Thank You!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笑脸一如从前 2024-11-25 02:39:06

您可以像这样使用 javascript 进行动态调整大小。

    var initialize = function() {
        var theBody = document.getElementById("bodyId");
        theBody.width = document.width;
    }

    window.onresize(function() {
        var theBody = document.getElementById("bodyId");
        theBody.width = document.width;
        });

在此示例中,我调整了整个 body 元素的大小,但您可以将其应用到您想要的任何列和字段。

<body id="bodyId" onload="initialize()">
...
</body>

You can do dynamic-resizing with javascript like this.

    var initialize = function() {
        var theBody = document.getElementById("bodyId");
        theBody.width = document.width;
    }

    window.onresize(function() {
        var theBody = document.getElementById("bodyId");
        theBody.width = document.width;
        });

In this example I'm resizing the entire body element, but you could apply it to whatever columns and fields you want.

<body id="bodyId" onload="initialize()">
...
</body>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文