简体   繁体   English

我的 Bootstrap 图像网格没有按预期工作

[英]My Bootstrap image grid is not working as expected

So I've been doing my portfolio and right now I'm doing the skills section which consists of a 6 image grid of each skill logo.所以我一直在做我的作品集,现在我正在做技能部分,其中包含每个技能徽标的 6 个图像网格。 For this I'm using Boostrap and I'm having a problem with the second row.为此,我正在使用 Boostrap,但第二行有问题。 It just clusters in the middle different from the first row.它只是在与第一行不同的中间聚集。 I'm linking my CodePen in case somebody can help me identify my problem.. (the idea of the CodePen is just watching the code as you guys can't see the images in there).我正在链接我的 CodePen,以防有人可以帮助我确定我的问题..(CodePen 的想法只是观看代码,因为你们看不到那里的图像)。

https://codepen.io/norwyx/pen/yLozjLg https://codepen.io/norwyx/pen/yLozjLg

Here's the HTML of the section that is not working:这是不起作用的部分的 HTML:

<div class="row d-flex justify-content-center align-items-center" id="skills__first-row">
    <div class="col-md-4 skills__item">
      <img src="./images/html5-logo.png" alt="HTML5 logo" class="img-fluid" id="html__logo">
    </div>
    <div class="col-md-4 skills__item">
      <img src="./images/css3-logo.png" alt="CSS3 logo" class="img-fluid" id="css__logo">
    </div>
    <div class="col-md-4 skills__item">
      <img src="./images/js-logo.png" alt="JavaScript logo" class="img-fluid" id="js__logo"> 
  </div>
  <!-- Second Row -->
  <div class="row d-flex justify-content-center align-items-center" id="skills__first-row">
    <div class="col-md-4 skills__item">
      <img src="./images/html5-logo.png" alt="HTML5 logo" class="img-fluid" id="html__logo">
    </div>
    <div class="col-md-4 skills__item">
      <img src="./images/css3-logo.png" alt="CSS3 logo" class="img-fluid" id="css__logo">
    </div>
    <div class="col-md-4 skills__item">
      <img src="./images/js-logo.png" alt="JavaScript logo" class="img-fluid" id="js__logo"> 
  </div>

首先从row中移除d-flex类,bootstrap 4和5,row已经有弹性了,第二件事是,如果你想让你的图像在div text-center在每列上添加text-center类,您的问题将得到解决

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM