㈠ div 怎樣插入背景圖片
四種方法:
需要注意的是,如果div中沒有內容,則通過設置高寬來設置測試查看背景圖片
第一種:
<divstyle="background:url(images/2.jpg);height:200;width:200;"></div>
第二種:
head部分引入
<style>.div{background:url(images/2.jpg);height:200;width:200;}</style>
第三種:在head部分引入外部樣式表
<linkrel="stylesheet"type="text/css"href="css/style.css"/>
並在style表中寫入:
.div{background:url(images/2.jpg);height:200;width:200;
第四種,在設計頁面直接選擇:修改>頁面屬性>背景圖像
希望能夠幫助到你,滿意請選擇。謝謝。
㈡ div 代碼 如何設置 DIV 背景圖片
關於如何設置 DIV 背景圖片,如下例子:如果是背景圖片重復就把no-repeat改為repeat
div{background:url(images/1.jpg) no-repeat;}