CSS3 多重背景图片
提问人:刘团圆发布时间:2020-11-19
想要使用多重背景图片功能,只需要对background-image属性的值进行修改。
【例题】设置多重背景图片
代码如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
div{
width: 800px;
height: 413px;
background-image:url('花.png'),url('点.jpg');
background-position: right bottom;
background-repeat: no-repeat;
}
</style>
</head>
<body>
<div></div>
</body>
</html>
继续查找其他问题的答案?
相关视频回答
回复(0)
点击加载更多评论>>