gpt4 book ai didi

css - 有没有办法确保所有文本对齐 : center text is indeed centered?

转载 作者:行者123 更新时间:2023-11-28 13:02:36 25 4
gpt4 key购买 nike

我正在尝试使用 Bootstrap 组装页脚。由于某些原因,尽管确保应用了 text-align: center;,但页脚链接看起来略微偏离中心。有没有办法确保所有文本元素确实正确对齐?

HTML

<!DOCTYPE html>
<html>
<body>
<div class="container-fluid">
<section class="row-fluid">
<div class="span12">
<h1 class="landing">
Lorem Ipsum
</h1>
<h4 class="landing">
Lorem Ipsum Lorem Ipsum Lorem Ipsum
</h4>
</div>
</section>
</div>
<footer class="footer">
<section class="row-fluid">
<ul class="footer-links">
<li>
<a href="#">Contact</a>
</li>
<li>
<a href="#">About</a>
</li>
</ul>
</section>
</footer>
</body>
</html>

CSS

h1.landing {
text-align: center;
font-size: 400%;
}

h4.landing {
text-align: center;
}

.footer-links {
list-style-type: none;
text-align: center;
}

.footer-links li {
display: inline;
padding-right: 10px;
}

最佳答案

您的 UL 似乎有一些左填充。尝试将其删除。

.footer-links {
list-style-type: none;
text-align: center;
padding:0px;
}

http://jsfiddle.net/S8mGk/1/

关于css - 有没有办法确保所有文本对齐 : center text is indeed centered?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16072305/

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