Can I add a hyperlink using pure CSS?

You can you with a small script line –

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

But without a and pure css not possible.

Leave a Comment