gpt4 book ai didi

html - 如何将两个跨度元素一个向左对齐,另一个向右对齐?

转载 作者:太空狗 更新时间:2023-10-29 13:04:44 27 4
gpt4 key购买 nike

我有两个 <span>元素:

<span style="margin-right:auto;">©2012 XYZ Corp. All Rights Reserved.</span>
<span style="margin-left:auto;">Built with <a href="http://www.wordpress.org/">Wordpress</a> and hosted by <a href="http://www.mediatemple.net/">(mt)</a> in California.</span>

我要第一个<span>位于页面左侧,第二个 <span>位于右侧,无论页面宽度如何(因此我不能使用固定定位)。

我可以使用什么 CSS 来做到这一点?

最佳答案

css 变量 float 用于定位元素。

选项是:

float:left;
float:right;
float:none;

<span style="float:left;">©2012 XYZ Corp. All Rights Reserved.</span>

<span style="float:right;">Built with <a

这是工作示例:

<span style="float:left; color: red;">©2012 XYZ Corp. All Rights Reserved.</span>

<span style="float:right; color: blue;">Built for example</span>

关于html - 如何将两个跨度元素一个向左对齐,另一个向右对齐?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9303976/

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