CSS3 多重背景圖片
提問人:劉團圓發(fā)布時間:2020-11-19
想要使用多重背景圖片功能,只需要對background-image屬性的值進行修改。
【例題】設(shè)置多重背景圖片
代碼如下:
<!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>
繼續(xù)查找其他問題的答案?
相關(guān)視頻回答
點擊加載更多評論>>