HTML Element Style How to - Create Hyperlink with Image and Text








Question

We would like to know how to create Hyperlink with Image and Text.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
a {<!-- ww w .ja  va2  s  . co  m-->
  position: relative;
  display: inline-block;
}

a span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -1em;
  margin-left: -50%;
  width: 100%;
  height: 2em;
  color: #f90;
  background-color: rgba(0, 0, 0, 0.5);
}
</style>
</head>
<body>
  <a href="#"><img src="http://www.java2s.com/style/download.png" /><span>Some
      text</span></a>
</body>
</html>

The code above is rendered as follows: