App下載
首頁htmlaHTML Element Style - 如何使圖像錨點(diǎn)標(biāo)簽流與文本

HTML Element Style - 如何使圖像錨點(diǎn)標(biāo)簽流與文本

我們想知道如何使圖像錨點(diǎn)標(biāo)簽流與文本。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
img {
  border: 1px solid black;
  float: left;
}

a {
  border: 1px solid red;
  display: inline-block;
}
</style>
</head>
<body>
  <a href="#"><img
    src="http://m.o2fo.com/style/download.png" /></a>
</body>
</html>