我得到了h3标签。其中一个较低 我尝试使用margin: 0和padding,但它没有起作用,我不知道哪里出错了。
删除align-items: center后,修复了高度,但如何使其在图片容器中居中,而不破坏h3的高度 图片
.info-footer { background-color: rgba(33, 40, 59, 0.8); color: #fff; border: 1px solid rgb(53, 56, 72); width: 100%; height: 14em; display: flex; justify-content: center; gap: 200px; padding: 20px 10px; align-items:top; }
从
.info-footer
样式中移除align-items: center;
。align-items
的作用是:选择
center
表示将元素放置在flex
容器的中心,并围绕此中心进行布局。换句话说,你的footer-info
和footer-menu
与 flex 容器的中心对齐,而不是起始位置。