Div元素在添加背景图像后没有正确对齐

问题描述 投票:0回答:2

background-image添加到我的div元素后,它没有正确对齐网格。

我原本试图在<img>中实际放置一个<div>标签,但后来我改为background-image。现在它就像一个块显示元素,因为它占据整行并将其他三个应该在同一行上显示的位置推到下面一个,但它没有显示底部的边距,所以我真的不知道发生了什么。

HTML

<!-- Container for body content -->
    <div id="bodyContent">
        <!-- If we can find a way to make this enable us to simply put a game in a list and it automatically 
        place it accodingly, change this to that system. Maybe make just one column and have it wrap content? -->
        <div id="adBarLeft" class="adBar"> AD BAR </div>
        <div id="gameColumn"> 
            <div class="gamePreview" id="game1"> </div>
            <div class="gamePreview"> 2 </div>
            <div class="gamePreview"> 3 </div>
            <div class="gamePreview"> 4 </div>
            <div class="gamePreview"> 5 </div>
      <div class="gamePreview"> 6 </div>
      <div class="gamePreview"> 7 </div>
      <div class="gamePreview"> 6 </div>
      <div class="gamePreview"> 9 </div>
      <div class="gamePreview"> 10 </div>
        </div>
        <div id="adBarRight" class="adBar"> AD BAR </div>
    </div>

CSS

.gamePreview {
    display: inline-block;
    width: 20%;
    height: 0;
    padding-bottom:20%;
    border:3px solid orange;
    margin:1.5%; /* Figure out why this value let 4 on compared to 2.5% which didnt, but should've */
}

#game1 { /* figure out why its setting it off from the others */
  background-image: url("https://is1-ssl.mzstatic.com/image/thumb/Purple71/v4/47/cf/cf/47cfcf79-9e1d-b21f-8e10-2658b7650c15/mzl.oiljceng.png/246x0w.jpg");
  background-size: contain;
}

我希望图像加载到<div>内部并在同一行上有四个,然后环绕到下一行,基本上用4个<div>的行创建行

html css image grid-layout
2个回答
1
投票

vertical-align: top;添加到.gamePreview类以将内联块对齐到顶部。

.gamePreview {
  display: inline-block;
  width: 20%;
  height: 0;
  padding-bottom: 20%;
  border: 3px solid orange;
  margin: 1.5%;
  vertical-align: top; /* Add this */
  /* Figure out why this value let 4 on compared to 2.5% which didnt, but should've */
}

#game1 {
  /* figure out why its setting it off from the others */
  background-image: url("https://is1-ssl.mzstatic.com/image/thumb/Purple71/v4/47/cf/cf/47cfcf79-9e1d-b21f-8e10-2658b7650c15/mzl.oiljceng.png/246x0w.jpg");
  background-size: contain;
}
<!-- Container for body content -->
<div id="bodyContent">
  <!-- If we can find a way to make this enable us to simply put a game in a list and it automatically 
        place it accodingly, change this to that system. Maybe make just one column and have it wrap content? -->
  <div id="adBarLeft" class="adBar"> AD BAR </div>
  <div id="gameColumn">
    <div class="gamePreview" id="game1"> </div>
    <div class="gamePreview"> 2 </div>
    <div class="gamePreview"> 3 </div>
    <div class="gamePreview"> 4 </div>
    <div class="gamePreview"> 5 </div>
    <div class="gamePreview"> 6 </div>
    <div class="gamePreview"> 7 </div>
    <div class="gamePreview"> 6 </div>
    <div class="gamePreview"> 9 </div>
    <div class="gamePreview"> 10 </div>
  </div>
  <div id="adBarRight" class="adBar"> AD BAR </div>
</div>

0
投票

我认为在父容器display:flex中使用#gameColumn会更好,因为DIV会容纳空间

#gameColumn{
    display: flex;
  	flex-wrap: wrap;
}

.gamePreview {
    flex-basis: 100px;
    height: 100px;
    border:3px solid orange;
    margin:2px; /* Figure out why this value let 4 on compared to 2.5% which didnt, but should've */
}

#game1 { /* figure out why its setting it off from the others */
  background-image: url("https://is1-ssl.mzstatic.com/image/thumb/Purple71/v4/47/cf/cf/47cfcf79-9e1d-b21f-8e10-2658b7650c15/mzl.oiljceng.png/246x0w.jpg");
  background-size: contain;
  background-repeat: no-repeat;
}
<!-- Container for body content -->
    <div id="bodyContent">
        <!-- If we can find a way to make this enable us to simply put a game in a list and it automatically 
        place it accodingly, change this to that system. Maybe make just one column and have it wrap content? -->
        <div id="adBarLeft" class="adBar"> AD BAR </div>
        <div id="gameColumn"> 
            <div class="gamePreview" id="game1"> </div>
            <div class="gamePreview"> 2 </div>
            <div class="gamePreview"> 3 </div>
            <div class="gamePreview"> 4 </div>
            <div class="gamePreview"> 5 </div>
      <div class="gamePreview"> 6 </div>
      <div class="gamePreview"> 7 </div>
      <div class="gamePreview"> 6 </div>
      <div class="gamePreview"> 9 </div>
      <div class="gamePreview"> 10 </div>
        </div>
        <div id="adBarRight" class="adBar"> AD BAR </div>
    </div>
© www.soinside.com 2019 - 2024. All rights reserved.