如何制作像这个网站那样的背景图片?

发布于 2024-09-01 20:32:29 字数 189 浏览 4 评论 0原文

http://disney.pageonewebsolutions.com/

该网站背景图像非常适合他的 div。 我想知道是否有人可以帮助我创建这样的网站。

感谢任何回复。

http://disney.pageonewebsolutions.com/

This website background image perfectly fit to his div.
I was wondering if anyone can help me to create the site like this.

Appreciate any reply.

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

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

发布评论

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

评论(3

仅冇旳回忆 2024-09-08 20:32:29

只需看一下背景的 CSS:

background:url("../images/background.jpg") no-repeat scroll center top #FCC900;

“中心”就起到了作用:它使背景始终位于中心。

Just take a look at the CSS for the background:

background:url("../images/background.jpg") no-repeat scroll center top #FCC900;

The "center" does the trick: it makes the background always stay in the centre.

愛上了 2024-09-08 20:32:29

应用背景图像

使用以下 CSS body { background: #fcc900 url(../images/background.jpg) no-repeat top center; ;

top 和 center 关键字确保背景图像始终显示在屏幕的顶部中心,并且图像本身可能是使用容器创建的牢记 div,为内容保留正确的尺寸。

如果您仍然不确定如何实现这些效果,请查看源代码并尝试将您找到的技术应用到您自己的设计中。

The background image is applied using the following CSS

body { background: #fcc900 url(../images/background.jpg) no-repeat top center; }

The top and center keywords make sure that the background image is always displayed in the top-center of the screen and image itself was probably created with the container div in mind, leaving the correct dimensions free for the content.

If you still unsure about how to achieve these effects, view the source and try and apply the techniques you find to your own design.

一紙繁鸢 2024-09-08 20:32:29

通过在背景图像上使用

By using <center> on the background image?

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