gpt4 book ai didi

html - 试图对齐 div

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

有些文本内容较小,有些较大如何使它们看起来相同并应用相同的边距

此外,当我减小浏览器尺寸时说移动尺寸我看到第二个和第三个 div 之间的差距这是 codepen 的链接 http://codepen.io/rahulv/pen/PGLBdY

CSS:

.  div.outer_certi{
margin-top:2%;
height: 100%;
}
.certification p{
padding:1% 1% 1% 1%;
}
.certification img{
padding:1% 1% 1% 1%;
float: left;
max-width:200px;
height:auto;
}
.certification{
border:1px solid #e6e6e6;
background-color:#faf9f;
overflow:hidden;
}
.certification:hover{
-moz-box-shadow: 0 0 10px #ccc;
-webkit-box-shadow: 0 0 10px #ccc;
box-shadow: 0 0 10px black;
}

最佳答案

在您的 .certification 类中添加 overflow:hidden;

差距来自您的 div.outer_certi 选择器。从该规则中删除 margin 。

如果你只想为第一个元素添加边距,那么这样做

div.outer_certi:first-of-type {
margin-top:2%;
}

如果你想让所有的div高度相同,你可以试试:

.certification{
min-height:150px;/* set this to you choice*/
}

关于html - 试图对齐 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40244434/

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