gpt4 book ai didi

html - 文字没有正确居中?

转载 作者:太空宇宙 更新时间:2023-11-04 04:08:01 25 4
gpt4 key购买 nike

我有我的社交菜单 text-aligned:center 但它仍然有很长的路要走。这是我的代码和一个 jsfiddle 来演示问题。正如您所看到的,它的左侧比右侧有更多的开放空间。我想把它弄平。

jsfiddle

HTML

<div id="wrapper">
<div id="header">
Erratic Fox
</div>
<div id="social">
<ul>
<li><a href="http://facebook.com/erraticfox">Facebook</a></li> —
<li><a href="http://erratic-fox.deviantart.com">Deviant Art</a></li> —
<li><a href="http://youtube.com/erraticfox">YouTube</a></li> —
<li><a href="http://steamcommunity.com/id/erraticfox">Steam</a></li>
</ul>

</div>
</div>

CSS

body {
margin-top: 10px;
background-color: #E5E5E5;
}

#header {
color: #404040;
width: 50%;
margin: auto;
background-color: #ffffff;
font-size:100px;
text-align: center;
}

#social {
font-family: Roboto;
font-size: 18px;
line-height: 100px;
text-align: center;
height: 100px;
width: 50%;
background-color: white;
margin-left: auto;
margin-right: auto;
margin-top: 10px;
}

#social a {
text-decoration: none;
color: #404040;
transition: 1s color;
-moz-transition: 1s color;
-webkit-transition: 1s color;
}

#social a:hover {
color: #427FED;
transition: 1s color;
-moz-transition: 1s color;
-webkit-transition: 1s color;
}

#social li {
margin-right: 30px;
margin-left: 30px;
display: inline;
}

最佳答案

添加

#social ul {
padding-left:0;
}

Demo

关于html - 文字没有正确居中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21098057/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com