位置:首頁(yè) > 軟件操作教程 > 編程開(kāi)發(fā) > CSS > 問(wèn)題詳情

CSS3 多重背景圖片

提問(wèn)人:劉團(tuán)圓發(fā)布時(shí)間:2020-11-19

想要使用多重背景圖片功能,只需要對(duì)background-image屬性的值進(jìn)行修改。

【例題】設(shè)置多重背景圖片

代碼如下:

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Document</title>

<style>

div{

width: 800px;

height: 413px;

background-image:url('花.png'),url('點(diǎn).jpg'); 

background-position: right bottom;

background-repeat: no-repeat;

}

</style>

</head>

<body>

<div></div>

</body>

</html>

image.png


繼續(xù)查找其他問(wèn)題的答案?

相關(guān)視頻回答
回復(fù)(0)
返回頂部