-
CSS – HTML containers
I’ve got something I can not figure ot and I think it might be because my logic is all screwed up. Keep in mind that I’m still learning all this stuff.
Is it possible to have a whole contianer on a CSS designed webpage to be a link?
Ok, I’ve make my whole website my using blocks of containers such as
#blocka
{
position: relative;
width: 300px;
height: 200px;
text-align: center;
background-image: url(‘images/a50.gif’);
color: #A8A88D;
padding: 0px 20px 0px 5px;
}And I’d like the graphic a50.gif to be hyperlink.
Should I not use a background-image and put the image in the html part of the webpage and then make it a Hyperlink?Thanks
Jeff