css 列表未居中[重复]

xyhw6mcr  于 2023-06-07  发布在  其他
关注(0)|答案(1)|浏览(164)

此问题已在此处有答案

CSS center display inline block?(9个回答)
Flexbox: center horizontally and vertically(14个回答)
5天前关闭。
我已经尝试了这么多的东西,仍然是一个初学者的HTML和CSS,想知道是否有人知道为什么列表不是居中的导航栏。

<!DOCTYPE html>
<html lang="en">
<head>
  <link href="https://fonts.googleapis.com/css2?family=Merriweather+Sans&display=swap" rel="stylesheet">
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  
  <div class="bar">
    <ul class="words">
      <li class ="Keyboards">Keyboards</li>
      <li class ="Accessories">Accessories</li>
      <li class ="In_Stock">In Stock</li>
      <li class ="Group_Buy">Group Buy</li>
      <li class ="Support">Support</li>    
    </ul>
  </div>
  
</head>
<body>
  
</body>
</html>
*{
  margin: 0;
  padding: 0;
}

body{
  background-color: rgb(41, 41, 41);
  font-family: 'Merriweather Sans', sans-serif;
  font-style: bold;

}

.bar{
  background-color: rgb(69, 69, 69);
  height: 75px;
}

li{  
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 25px;
  margin: auto;
}

我已经尝试了很多边距和显示Flex。还是没什么用

oogrdqng

oogrdqng1#

试试这个:

.bar{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(69, 69, 69);
  height: 75px;
}

.words{
  width: 30%;
}

您可以使用类words更改ul元素的width

相关问题