cssを使用してhtml要素に背景画像を作成しようとしていますが、たとえばテキストがない場合は背景になりません。
CSSS-
#box {
background url(.....)
}
HTML-
<div id="box">something</div> // this works bu it shows the text
<div id="box"></div> // this is what i want not text just the background url from #box
ありがとう :))