国产gaysexchina男同gay,japanrcep老熟妇乱子伦视频,吃奶呻吟打开双腿做受动态图,成人色网站,国产av一区二区三区最新精品

App下載
首頁htmlaHTML Element Style - 如何使用圖像和文本創(chuàng)建超鏈接

HTML Element Style - 如何使用圖像和文本創(chuàng)建超鏈接

我們想知道如何使用圖像和文本創(chuàng)建超鏈接。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
a {
  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.yjpub.cn/style/download.png" /><span>Some
      text</span></a>
</body>
</html>