gpt4 book ai didi

Logo 行的 CSS

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

我正在尝试在网站 https://www.andromedi.com/ 的页脚中编写一行 Logo

桌面版工作正常,但移动版需要看起来像 this

我在网上查了一下,显然要走的路是使用 flexbox(我仍然需要更好地理解 css-grid 和 flexbox 之间的区别)

CSS代码:

.footer-asociaciones-wrapper {
width: 100%;
margin: auto;
padding: 1.5rem 5rem;
}


.footer-asociaciones-row {
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 100%;
}

.footer-asociaciones-column {
display: flex;
flex-direction: column;
flex-basis: 100%;
flex: 1;
}

.footer-asociaciones-column img {
height:100px;
}

.footer-asociaciones-column a {
margin: auto;
}

p.footer-asociaciones-title {
padding: 1.5rem 1rem;
color: white;
font-family: 'DIN1451EngschriftRegular';
font-size: large;
}

我尝试使用 width: 33%;然后the logos overlap

感谢任何帮助。谢谢!

最佳答案

您需要为图像指定 max-widthmax-height 尺寸,以便它们根据容器的大小而变化。 heightwidth 的自动值用于保持图像的纵横比。

.footer-asociaciones-column img {
max-width: 100%;
max-height: 100px;
height: auto;
width: auto;
}

关于 Logo 行的 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56363404/

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