App下載
首頁(yè)htmlui_olHTML Element Style - 如何使文本旁邊的圖像的菜單鏈接

HTML Element Style - 如何使文本旁邊的圖像的菜單鏈接

我們想知道如何使文本旁邊的圖像的菜單鏈接。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
ul {
  list-style: none;
}

li:before {
  content: "\A";
  background: url('http://m.o2fo.com/style/download.png') no-repeat 0px 0px/30px 30px;
  padding: 8px 20px
}

li {
  margin: 30px;
}
</style>
</head>
<body>
  <ul>
    <li>one</li>
    <li>two</li>
    <li>three</li>
  </ul>
</body>
</html>