gpt4 book ai didi

html - 如何让 a 标签垂直居中到 footer 标签?

转载 作者:行者123 更新时间:2023-11-28 03:11:28 26 4
gpt4 key购买 nike

我怎样才能让 <a>标记垂直中心到 <footer>标签?

下面是我的 CSS:

.header-article-list a {

width:50%;
color: #000000;
}

.header-article-list .prev-btn {


float:left;

}
.header-article-list .next-btn {

float:right;
}

它没有让 <a>标记垂直中心到 <footer>标签。

这是 <footer>在浏览器中:

enter image description here

这是 <a>浏览器中的标签:

enter image description here

这是 <span>标签:

enter image description here


编辑

我将 css 设置如下:

.header-article-list a {

overflow:hidden;
width:50%;
color: #000000;
}

.header-article-list .prev-btn {


/** float:left; **/

}
.header-article-list .next-btn {

/** float:right;**/
}

得到如下效果:

enter image description here


EDIT-2

text-align:center继承自 header-article-list ,我在浏览器中取消选中它:

enter image description here

最佳答案

您可以在 css 中使用此代码:

footer {
background-color: #FFF;
position:fixed;
bottom: 0px;
width: 100%;
text-align: center;
}

HTML:

   <footer align="center">
<a href="#">March 25, 2</a>
</footer>

您可以在此处显示示例:http://jsfiddle.net/9yNT3/3/

关于html - 如何让 a 标签垂直居中到 footer 标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45687330/

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