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

App下載
首頁htmltwo_columnCSS Layout - 如何創(chuàng)建具有非標準列表標記的兩列列表

CSS Layout - 如何創(chuàng)建具有非標準列表標記的兩列列表

我們想知道如何創(chuàng)建具有非標準列表標記的兩列列表。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.two-col-special {
  border: 1px dotted blue;
  margin: 0;
  padding: 0;
}

.two-col-special li {
  display: inline-block;
  width: 45%;
  margin: 0;
  padding: 0;
  vertical-align: top;
}

.two-col-special li:before {
  content: '+';
  padding: 5px;
  margin-right: 5px;
  color: orange;
  background-color: white;
  display: inline-block;
}
</style>
</head>
<body>
  <ul class="two-col-special">
    <li>First Category</li>
    <li>Second Category</li>
    <li>Third Category</li>
    <li>Fourth Category</li>
    <li>Fifth Category</li>
  </ul>
</body>
</html>