gpt4 book ai didi

html - 如何使用 css 将版权和图像居中?

转载 作者:太空宇宙 更新时间:2023-11-03 20:41:12 26 4
gpt4 key购买 nike

我想将我的版权和 Logo (Windows Logo )居中。我怎样才能使用 CSS 将这些放在页面的中心。我以为我有正确的 CSS,但它仍然显示在左侧。

查看我的 jsfiddle。

Jsfiddle:http://jsfiddle.net/huskydawgs/z9j9rsz2/27/

这是我的代码:

<div class="topbar">

  <div id="logo">
<img src="http://fc01.deviantart.net/fs71/f/2012/048/4/0/microsoft_windows_8_logo_by_pooterman-d4q0ub4.png" />
</div>

版权所有 © 2014 Microsoft

这是我的CSS:

.topbar {
width: 100%;
background: #f66511;
height: 34px;
line-height: 1;
}
.copyright{
color:#232323;
font-size:11px;
margin: 0 auto;
position: absolute;
top: 18px;
text-align: center;
}

最佳答案

对于版权,只需添加width:100%;。您需要这个,因为您已将元素设置为绝对元素,因此如果您希望文本对齐属性起作用,则必须定义宽度。

对于图像只需添加另一个文本对齐属性:

#logo {
text-align:center;
}

关于html - 如何使用 css 将版权和图像居中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25655026/

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