国产chinesehdxxxx野外,国产av无码专区亚洲av琪琪,播放男人添女人下边视频,成人国产精品一区二区免费看,chinese丰满人妻videos

App下載
首頁(yè)htmltwo_columnCSS Layout - 如何創(chuàng)建具有非標(biāo)準(zhǔn)列表標(biāo)記的兩列列表

CSS Layout - 如何創(chuàng)建具有非標(biāo)準(zhǔn)列表標(biāo)記的兩列列表

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

<!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>