gpt4 book ai didi

css - 对齐两个图像的内联中心 bootstrap col

转载 作者:行者123 更新时间:2023-11-28 17:08:51 24 4
gpt4 key购买 nike

我有一个 html 模板,我想将 Bootstrap 集成到其中。我目前在 Bootstrap 列中有两个图像。我想让两个图像对齐并彼此相邻,同时将它们都放在列的中间。当我尝试时,它要么不将它们居中,要么将它们彼此居中,这是我不想要的。我希望两个图像居中并彼此相邻......这是我的代码:

  <div class="row justify-content-center">

<div class="col-xl-6">
<img class="welcome-icon-size align-top center-block" src="{% static 'images/untitled-2.png'%}" alt="Generic placeholder image">
<img class="welcome-name-size no-margin-top center-block" src="{% static 'images/untitled-1.png'%}" alt="Generic placeholder image">
</div>

</div>

这是CSS:

.no-margin-top {
margin-top: 0px !important;
}

.no-padding {
padding: 0em !important;
}

.welcome-icon-size {
height: 9.55em !important;
}

.welcome-name-size {
height: 14em !important;
}

.welcome_title {
font-size: 1em !important
}

.welcome-center-items {
align-items: center !important;
}

.center-block {
display: block;
margin-left: auto;
margin-right: auto;
}

我的图片是这样的:

enter image description here

我希望它看起来像以下但居中::

enter image description here

图像在上面的屏幕截图中没有居中,它们与列的左侧对齐

最佳答案

align-top的css在哪里?我不知道这个类是做什么的。试试这个:

  • 从您的图像中删除对齐顶部和无边距顶部类
  • 添加类 my-align 或任意命名(但在 css 中,类名应该相同 - 请记住这一点)

在 css 中它应该是这样的:

.my-align { margin:0;padding:0;width:50%;float:left; }

这是你想要的吗?

关于css - 对齐两个图像的内联中心 bootstrap col,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47613192/

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