背景画像を追加する 要素 質問する

背景画像を追加する 要素 質問する

要素に背景画像を含めることは可能ですか<div>? 可能であれば、どのようにすればよいでしょうか?

ベストアンサー1

これのことですか?

<style type="text/css">
.bgimg {
    background-image: url('../images/divbg.png');
}
</style>

...

<div class="bgimg">
    div with background
</div>

おすすめ記事