将 Flash 网站置于浏览器放大中心

发布于 2024-11-25 08:39:54 字数 150 浏览 0 评论 0原文

我的 Flash 页面在较小分辨率的屏幕上有点偏离中心。如果场地居中,两侧被切断,那么一切都会好起来的。但该网站从左上角开始,因此某些内容被剪掉。我知道这个问题可以用 JavaScript 解决,但我想知道是否有更优雅的方式(可能是 CSS 方式)来解决这个问题。

谢谢

I have a Flash page that is a bit off center on smaller resolution screens. If the site was centered, and the sides were cut off, then all would be well. But the site starts in the top-left corner, so some content is clipped. I know the problem can be solved in JavaScript, but I'm wondering if there is a more elegant, possibly CSS-way, to solve the problem.

Thank you

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

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

发布评论

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

评论(2

橙味迷妹 2024-12-02 08:39:54

使用 css 将 div 水平居中 - 像这样:

.content {
  width: 960px;
  margin: 0 auto;
}

就是这样。

horizontally centering a div using css - something like this:

.content {
  width: 960px;
  margin: 0 auto;
}

that's it.

春庭雪 2024-12-02 08:39:54

如果你想将内容居中:

.content {
    width: 800px;
    height: 600px;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

if you want to center you content:

.content {
    width: 800px;
    height: 600px;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文