I am struggling to create an HTML element with a background image using CSS, but the background does not show up unless there is text inside the element.
CSS -
#box {
background:url(.....)
}
HTML -
<div id="box">something</div> // this works but it displays the text
<div id="box"></div> // I want only the background url from #box without any text
Thank you :))