I have to put a background image in a div, if i put only image, it will not show. if i put only height it will be shown. so in this way it will be shown:

<div id="big" style="background-image:url('base1.png');height:200px;"></div>

if i want to position div and resize image in this way

<div id="big" style="background-image:url('base1.png'); left:519px; top:423px; width:474px; height:205px; z-index:4"></div>

it will be not shown. what can i do? can you help me?

link|improve this question

72% accept rate
ok, so if i resize manually image, then in which way can i show it? – JackTurky Nov 25 '11 at 10:26
1  
If your div has no content, then its height is zero. You need to either place content in it, or set its height, in order for the div to show. – Beatriz Oliveira Nov 25 '11 at 10:28
if i don't use height it will be not shown! – JackTurky Nov 25 '11 at 10:29
use min-height...? – anglimass Nov 25 '11 at 10:29
i will try! w8 a moment :P – JackTurky Nov 25 '11 at 10:31
show 1 more comment
feedback

1 Answer

A cross-browser solution will account for min-height and (IE) height as in:

<div id="big" style="background-image:url('base1.png');
  min-height:100px; height:100px; " ></div>

Of course I'd much prefer (knowing the q could have been an example but anyway here it is...)

<div id="big" class="base1">
  Your Content
</div>

and css

.base1 {
  background-image: url('base1.png');
  height:200px; 
  min-height:100px; 
  height: 500px;
}

Note that the IE issue is for versions 6 and before which at the time of writing is less than 1% (and declining).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.