html CSS网格的页脚
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html CSS网格的页脚相关的知识,希望对你有一定的参考价值。
ul {
display: inline-grid;
grid-auto-flow: row;
grid-gap: 24px;
justify-items: center;
margin: auto;
}
@media (min-width: 500px) {
ul {
grid-auto-flow: column;
}
}
a {
color: white;
text-decoration: none;
box-shadow: inset 0 -1px 0 hsla(0, 0%, 100%, 0.4);
}
a:hover {
box-shadow: inset 0 -1.2em 0 hsla(0, 0%, 100%, 0.4);
}
li:last-child {
grid-column: 1 / 2;
grid-row: 1 / 2;
}
li:hover ~ li p {
animation: wave-animation 0.3s infinite;
}
/* below is just for demo styling */
div {
display: flex;
height: 100vh;
width: 100%;
background-color: #002a38;
line-height: 1.3;
font-family: Menlo, monospace;
}
@keyframes wave-animation {
0%,
100% {
transform: rotate(0deg);
}
25% {
transform: rotate(20deg);
}
75% {
transform: rotate(-15deg);
}
}
<div>
<ul>
<li><a href="https://twitter.com/julesforrest">Twitter</a></li>
<li><a href="https://codepen.io/julesforrest">Codepen</a></li>
<li><a href="mailto:julesforrest@gmail.com">Email</a></li>
<li><a href="https://dribbble.com/julesforrest">Dribbble</a></li>
<li><a href="https://github.com/julesforrest">Github</a></li>
<li>
<p>
以上是关于html CSS网格的页脚的主要内容,如果未能解决你的问题,请参考以下文章
CSS:页面底部的页脚重叠内容并具有更高的宽度
css Potherca的页脚
CSS CSS - 给你的页脚一个固定的位置 - 位置:固定
使用元素 ui 的带有 css 的页脚按钮组
如何强制我的页脚粘在 CSS 中任何页面的底部?
可以将页脚添加到 MVCContrib 网格吗?