求一段css码,请css高手给予指点
我求的是一段通过图片链接网站的css代码,就是通过点击一个图片可以打开一个网站。希望css高手能给去指点。
参考答案:如果非要用CSS的话,可以结合over:expression来实现,如:
<style>
.styleLink
{
background-color: Silver;
cursor: Hand;
}
.styleTest
{
over:expression(((this.readyState=="complete") && (this.className=="styleLink")) || (
(
myinit=function(oSource)
{
oSource.onclick=function(){window.location.href=""};
}
) ,(myinit(this)), (this.className="styleLink")));
}
</style>
<div class='styleTest'>我打开百度</div>