Add URL link in CSS Background Image?
Posted
by neversaint
on Stack Overflow
See other posts from Stack Overflow
or by neversaint
Published on 2010-04-15T07:50:41Z
Indexed on
2010/04/15
7:53 UTC
Read the original article
Hit count: 571
I have a CSS entry that looks like this:
.header {
background-image: url("./images/recountLogo.png");
background-repeat: no-repeat;
height:160px;
padding-left:280px;
padding-top:50px;
width:470px;
color: #eaeaea;
border-bottom:1px solid #eaeaea;
}
How can I add the link to the the background image in that CSS?
The full CSS can be found here and the html that uses is there.
© Stack Overflow or respective owner