gpt4 book ai didi

css - 多个背景图像 css 不适合我

转载 作者:太空宇宙 更新时间:2023-11-04 00:04:56 25 4
gpt4 key购买 nike

我想创建多个背景图像,但出于某种原因它不适合我。我在网上搜索过并在 youtube 上观看了一些教程视频。我一步一步地按照教程说明进行操作,但我不知道为什么它对我不起作用。

我正在使用 Dreamweaver CS6。

这是我的代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1
<style type="text/css">
body
{ background: url(images/navi-bg.png) repeat-x 0 85px, url(images/gplaypattern.png) repeat;

}
</style>
</head>
<body>
</body>
</html>

图片链接如下:

enter image description here

enter image description here

我希望第一张图片有 backgound-repeat: repeat-x backgound-positon (x): 0 backgound-position (y)85px

第二张图片应该重复

最佳答案

这是您缺少 html 和 head 标签并且还忘记关闭 doctype 的解决方案

 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<style type="text/css">
body
{ background: url(http://i48.tinypic.com/23vyd6g.png) repeat-x 0 85px, url(http://i46.tinypic.com/oucxky.png) repeat;

}
</style>
</head>

<body>
</body>
</html>

关于css - 多个背景图像 css 不适合我,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15288908/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com