html背景图片和背景颜色可以共存吗?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html背景图片和背景颜色可以共存吗?相关的知识,希望对你有一定的参考价值。
我想达到这样的效果,背景图片居中,剩余背景部分是黑色的,怎么办呢
可以,可以这样写例如:background:url(../images/1.jpg) no-repeat top center #000;no-repeat是不平铺,top让你的背景图片置顶, center是背景图居中,而#000就是你的背景颜色了。 参考技术A <!doctype html><html>
<head>
<meta charset="utf-8">
<title>标题</title>
</head>
<body style=" background:url(psb.jpg) top center no-repeat #000">
</body>
</html>
浏览结果:
本回答被提问者和网友采纳 参考技术B 背景图片和背景颜色是可以共存的。background:#000 url(img/img.jpg) center top no-repeat; 参考技术C 楼上的按照w3c标准些css吧
background-image:url("images/image.jpg") no-repeat center center;background-color:#000;
这样就行。第一是背景图片 不重复平铺 左右居中 上下居中 第二句背景色黑色 参考技术D 可以, 你可以这样写
.bgcolorbackground:url("images/image.jpg") no-repeat top #999;
top是给图片定位的 当然你也可以改成left、right或者bottom
以上是关于html背景图片和背景颜色可以共存吗?的主要内容,如果未能解决你的问题,请参考以下文章
我可以在一个 CSS 元素上有两个背景图像和一个背景颜色吗? [复制]