gpt4 book ai didi

css - 使用 div 创建两列页脚?

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

如何仅使用 div 创建两列页脚? (无表)

页脚是 980px 它应该包含....

版权所有 2010 xyz.com(左侧)

关于我们 |隐私 |术语(右侧)

最佳答案

你可以这样做:

CSS:

.Footer_outer{
width: 980px;
border: 1px solid;
}

.Footer_inner_left{
width: 49%;
Float: left;
display:inline;
}

.Footer_inner_right{
width: 49%;
Float: right;
display:inline;
}

HTML:

<div class="Footer_outer">
<div class="Footer_inner_left">Copyright 2010 xyz.com </div>
<div class="Footer_inner_right">About us | privacy | terms </div>
</div>

关于css - 使用 div 创建两列页脚?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3239167/

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