gpt4 book ai didi

css - 如何将图像移动到页脚的右侧?

转载 作者:太空宇宙 更新时间:2023-11-04 04:18:10 26 4
gpt4 key购买 nike

我认为向右浮动会将元素推到最右侧,但事实并非如此。这是我的 HTML:

<footer>
<p class="float-left">&copy;<%: DateTime.Now.Year %></p>
<img class="breathingRoom" src="Images/axXAndSpaceLogo.jpg" alt="Across Time and Space logo" width="128" height="80" />
<a class="breathingRoom" href="http://www.awardwinnersonly.com/humans.txt" target="_blank">
<img src="Images/humanstxt-isolated-orange.gif" alt="Humans dot text logo" width="105" height="46" /></a>
<img class="float-right" src="Images/Logo-BannerSmall_1_.gif" />
</footer>

...这是相关的 CSS:

.float-left {
float: left;
}

.float-right {
float: right;
}

.breathingRoom {
margin-left: 4px;
margin-top: 4px;
}

...但最终图像与 humans.txt 图像相撞,而不是紧靠屏幕的东侧。我需要做些什么才能将它推向正确的舞台?

html5 CSS 页脚

最佳答案

footer {
position: relative;
}
.float-right {
position: absolute;
right: 0; /* no float necessary */
}

由于您没有为其余元素指定任何条件,所以实际上您不需要将它们向左浮动,除非您希望内联图像和文本。

关于css - 如何将图像移动到页脚的右侧?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19602043/

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