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

App下載
首頁htmlui_olHTML Element Style - 如何添加邊框底部和左邊框以包裝列表項(xiàng)的文本

HTML Element Style - 如何添加邊框底部和左邊框以包裝列表項(xiàng)的文本

我們想知道如何添加邊框底部和左邊框以包裝列表項(xiàng)的文本。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
ul {
  text-align: center;
  padding: 10px;
  border: 2px solid green;
  list-style:none;
  width: 150px;
}

li {
  width: 100%;
  margin: 10px 0 10px;
  border-bottom: 2px solid red;
  border-left: 2px solid brown;
}

li a {
  text-decoration: none;
}
</style>

</head>
<body>
  <ul>
    <li><a href="">this is a test</a></li>
    <li><a href="">this is a test</a></li>
  </ul>
</body>
</html>