我可以使用纯CSS添加超链接吗?

时间:2016-08-11 05:28:01

标签: html css

我正在尝试使用纯CSS创建超链接。 (我无法在HTML中添加<a>标记。)在下面的代码中,我想用CSS添加图像周围的链接。这可能吗?

HTML

<div class="target">
  <img src="http://placehold.it/400x400">
</div>

CSS

.target img {
  cursor: pointer;
  content: "href(http://www.w3schools.com)"
  /*content: "url(http://www.w3schools.com)"*/
}

1 个答案:

答案 0 :(得分:0)

你可以使用一个小的脚本行 -

<div class="target" onclick="window.location.href='http://w3schools.com'">
  <img src="http://placehold.it/400x400">
</div>

但没有a和纯css是不可能的。