html – 如何将两个span元素左对齐,另一个向右对齐?

前端之家收集整理的这篇文章主要介绍了html – 如何将两个span元素左对齐,另一个向右对齐?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有两个< 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 href="http://www.wordpress.org/">wordpress</a> and hosted by <a href="http://www.mediatemple.net/">(mt)</a> in California.</span>
原文链接:https://www.f2er.com/html/226809.html

猜你在找的HTML相关文章