CSS background image
Posted
by Christopher
on Stack Overflow
See other posts from Stack Overflow
or by Christopher
Published on 2010-04-27T22:34:42Z
Indexed on
2010/04/27
22:43 UTC
Read the original article
Hit count: 378
I have
.green {
background-image:('http://i42.tinypic.com/xzup2.jpg')
background-repeat: no-repeat;
height:430px;
width:100%;
}
.yellow {
background-image: url('/images/yellowlight.png');
background-repeat: no-repeat;
height:430px;
width:100%;
}
in my css.
.yellow
works fine, but .green
. does not work. What's wrong?
© Stack Overflow or respective owner