首页htmlui_olHTML Element Style - 如何水平列表项带边距

HTML Element Style - 如何水平列表项带边距

我们想知道如何水平列表项带边距。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
ul {
  width: auto;
  padding: 10px;
  text-align: center;
  margin: 0 auto;
  background: #ccc;
}

li {
  display: inline-block;
  margin-right: 15px;
}
</style>
</head>
<body>
  <ul>
    <li>Test</li>
    <li>Test</li>
    <li>Test</li>
    <li>Test</li>
  </ul>
</body>
</html>