将 html 正文分为两部分

发布于 2024-12-06 15:19:36 字数 81 浏览 0 评论 0原文

是否可以将我网站中的正文标记分成两部分。例如,背景颜色的前 50%(高度)为白色,其余 50% 为黑色? 有谁知道我该怎么做?

谢谢

Is it possible to split the body tag in my web site into two parts. For example having the first 50% (in height) in the background-color in white and the rest 50% in black?
Does anyone know how I can do that?

Thanks

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

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

发布评论

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

评论(3

十年不长 2024-12-13 15:19:36

如果使用 CSS3 就足够了,那么下面的方法就可以了:

body {
  background: #000 url(white.png) 0 100% repeat-x;
  -webkit-background-size: 0 50%;
  -moz-background-size: 0 50%;
  -o-background-size: 0 50%;
  background-size: 0 50%;
}

或者你需要一个(垂直)足够大的图像,那么:

body {
  background: #000 url(white.png) 0 50% repeat-x;
}

If it's enough to work with CSS3, then the following do the trick:

body {
  background: #000 url(white.png) 0 100% repeat-x;
  -webkit-background-size: 0 50%;
  -moz-background-size: 0 50%;
  -o-background-size: 0 50%;
  background-size: 0 50%;
}

Or you need a (vertically) big enough image, then:

body {
  background: #000 url(white.png) 0 50% repeat-x;
}
风蛊 2024-12-13 15:19:36

您可以为两种颜色创建两个 DIV,并将内容放在它们上方的第三个 div 中。

You can make two DIVs for the two colors and place the content in a third div over them.

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