两行使用 div 容器

huangapple go评论57阅读模式
英文:

Two rows using div containers

问题

I have different div containers in total number 9, they have unique styling for spacing and padding. I want to find a way now to have 2 rows, that each of these div cards will have enough spacing so that can be read easily. Currently, I have one div container and below them as a new row having different spacing. I will share my logic below both CSS and HTML code.

// CSS code

.cards-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}

.card {
width: 100px;
height: 100px;
}

.card img {
max-width: 60px;
max-height: 60px;
}

.card h3 {
font-size: 16px;
margin-top: 10px;
}

.card-container > .card {
width: 120px;
height: 120px;
}

.card-body {
display: flex;
flex-direction: row;
align-items: center;
height: 50px;
padding: 10px;
}

.icon {
font-size: 24px;
margin-right: 5px;
}

h3 {
margin: 0;
font-size: 14px;
}

// Bootstrap HTML code

Shop by Categories


Health and Beauty

                <!-- Clothing & Accessories icon -->
                <a href="category-full.html">
                    <div class="card-container">
                        <div class="card">
                            <div class="card-body">
                                <div class="row flex-wrap">
                                    <div class="col-12">
                                        <img src="img/eShop-Images/clothes_accessories.png.png">
                                        <h3>Clothing & Accessories</h3>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </a>

                <!-- Toys & Hobbies icon -->
                <a href="category-right.html">
                    <div class="card-container">
                        <div class="card">
                            <div class="card-body">
                                <div class="row flex-wrap">
                                    <div class="col-12">
                                        <img src="img/eShop-Images/toys_hobbies.png.png">
                                        <h3>Toys & Hobbies</h3>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </a>

                <!-- Home & Appliances icon -->
                <a href="category-full.html">
                    <div class="card-container">
                        <div class="card">
                            <div class="card-body">
                                <div class="row flex-wrap">
                                    <div class="col-12">
                                        <img src="img/eShop-Images/home_improvement.png.png">
                                        <h3>Home & Appliances</h3>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </a>

                <!-- Sport & Outdoor icon -->
                <a href="category-right.html">
                    <div class="card-container">
                        <div class="card">
                            <div class="card-body">
                                <div class="row flex-wrap">
                                    <div class="col-12">
                                        <img src="img/eShop-Images/sport_outdoor.png.png" style="width: 56px;">
                                        <h3>Sport & Outdoor</h3>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </a>

                <!-- Computer & Tablets icon -->
                <a href="category-right.html">
                    <div class="card-container">
                        <div class="card">
                            <div class="card-body">
                                <div class="row flex-wrap">
                                    <div class="col-12">
                                        <img src="img/eShop-Images/computers_hardware.png.png" style="width: 56px;">
                                        <h3>Computer & Tablets</h3>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </a>

                <!-- Video Games icon -->
                <a href="category-right.html">
                    <div class="card-container">
                        <div class="card">
                            <div class="card-body">
                                <div class="row flex-wrap">
                                    <div class="col-12">
                                        <img src="img/eShop-Images/video_games.png.png" style="width: 56px;">
                                        <h3>Video Games</h3>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </a>

                <!-- Kids & Family icon -->
                <a href="category-right.html">
                    <div class="card-container">
                        <div class="card">
                            <div class="card-body">
                                <div class="row flex-wrap">
                                    <div class="col-12">
                                        <img src="img/eShop-Images/kids_family.png.png" style="width: 56px;">
                                        <h3>Kids & Family</h3>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </a>

                <!-- Office equipment -->
                <a href="category.html">
                    <div class="card-container">
                        <div class="card">
                            <div class="card-body">
                                <div class="row flex-wrap">
                                    <div class="col-12">
                                        <img src="img/eShop-Images/office_equipment.png.png" style="width: 56px;">
                                        <h3>Office equipment</h3>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </a>

            </div>
        </div>
    </div>
</div>
英文:

I have different div containers in total number 9, they have unique styling for spacing and padding. I want to find a way now to have 2 rows, that each of these div cards will have enough spacing so that can be read easily. Currently i have one div container and below of them as new row having different spacing. I will share my logic below both css and html code.

// css code

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
  width: 100px;
  height: 100px;
  
}


.card img {
  max-width: 60px;
  max-height: 60px;
}


.card h3 {
  font-size: 16px;
  margin-top: 10px;
}



.card-container &gt; .card {
    width: 120px;
    height: 120px;
}

.card-body {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 50px;
    padding: 10px;
}

.icon {
    font-size: 24px;
    margin-right: 5px;
}

h3 {
    margin: 0;
    font-size: 14px;
}

// bootstrap html code

&lt;!-- Shop by Categories starts here --&gt;
&lt;div id=&quot;hot&quot;&gt;
&lt;div class=&quot;box py-4&quot;&gt;
&lt;div class=&quot;container&quot;&gt;
&lt;div class=&quot;row&quot;&gt;
&lt;div class=&quot;col-md-9&quot;&gt;
&lt;h2 class=&quot;mb-0&quot;&gt;
Shop by Categories
&lt;/h2&gt;
&lt;!-- Health and Beauty icon --&gt;
&lt;a href=&quot;category-full.html&quot;&gt;
&lt;div class=&quot;cards-container d-flex justify-content-between&quot;&gt;
&lt;div class=&quot;card-container&quot;&gt;
&lt;div class=&quot;card&quot;&gt;
&lt;div class=&quot;card-body&quot;&gt;
&lt;div class=&quot;row flex-wrap&quot;&gt;
&lt;div class=&quot;col-12&quot;&gt;
&lt;img src=&quot;img/eShop-Images/NewBeauty.png.png&quot;&gt;
&lt;h3&gt;Health and Beauty&lt;/h3&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/a&gt;
&lt;!--Clothing &amp; Accessories icon--&gt;
&lt;a href=&quot;category-full.html&quot;&gt;
&lt;div class=&quot;card-container&quot;&gt;
&lt;div class=&quot;card&quot;&gt;
&lt;div class=&quot;card-body&quot;&gt;
&lt;div class=&quot;row flex-wrap&quot;&gt;
&lt;div class=&quot;col-12&quot;&gt;
&lt;img src=&quot;img/eShop-Images/clothes_accessories.png.png&quot;&gt;
&lt;h3&gt;Clothing &amp; Accessories&lt;/h3&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/a&gt;
&lt;!--Toys &amp; Hobbies icon--&gt;
&lt;a href=&quot;category-right.html&quot;&gt;
&lt;div class=&quot;card-container&quot;&gt;
&lt;div class=&quot;card&quot;&gt;
&lt;div class=&quot;card-body&quot;&gt;
&lt;div class=&quot;row flex-wrap&quot;&gt;
&lt;div class=&quot;col-12&quot;&gt;
&lt;img src=&quot;img/eShop-Images/toys_hobbies.png.png&quot;&gt;
&lt;h3&gt;Toys &amp; Hobbies&lt;/h3&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/a&gt;
&lt;!--Home &amp; appliances icon--&gt;
&lt;a href=&quot;category-full.html&quot;&gt;
&lt;div class=&quot;card-container&quot;&gt;
&lt;div class=&quot;card&quot;&gt;
&lt;div class=&quot;card-body&quot;&gt;
&lt;div class=&quot;row flex-wrap&quot;&gt;
&lt;div class=&quot;col-12&quot;&gt;
&lt;img src=&quot;img/eShop-Images/home_improvement.png.png&quot;&gt;
&lt;h3&gt;Home &amp; Appliances&lt;/h3&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/a&gt;
&lt;!-- Sport &amp; Outdoor icon--&gt;
&lt;a href=&quot;category-right.html&quot;&gt;
&lt;div class=&quot;card-container&quot;&gt;
&lt;div class=&quot;card&quot;&gt;
&lt;div class=&quot;card-body&quot;&gt;
&lt;div class=&quot;row flex-wrap&quot;&gt;
&lt;div class=&quot;col-12&quot;&gt;
&lt;img src=&quot;img/eShop-Images/sport_outdoor.png.png&quot; style=&quot;width: 56px;&quot;&gt;
&lt;h3&gt;Sport &amp; Outdoor&lt;/h3&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/a&gt;
&lt;!-- Computer &amp; Tablet icon--&gt;
&lt;a href=&quot;category-right.html&quot;&gt;
&lt;div class=&quot;card-container&quot;&gt;
&lt;div class=&quot;card&quot;&gt;
&lt;div class=&quot;card-body&quot;&gt;
&lt;div  class=&quot;row flex-wrap&quot;&gt;
&lt;div class=&quot;col-12&quot;&gt;
&lt;img src=&quot;img/eShop-Images/computers_hardware.png.png&quot; style=&quot;width: 56px;&quot;&gt;
&lt;h3&gt;Computer &amp; Tablets&lt;/h3&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/a&gt;
&lt;!-- Video Games icon--&gt;
&lt;a href=&quot;category-right.html&quot;&gt;
&lt;div class=&quot;card-container&quot;&gt;
&lt;div class=&quot;card&quot;&gt;
&lt;div class=&quot;card-body&quot;&gt;
&lt;div class=&quot;row flex-wrap&quot;&gt;
&lt;div class=&quot;col-12&quot;&gt;
&lt;img src=&quot;img/eShop-Images/video_games.png.png&quot; style=&quot;width: 56px;&quot;&gt;
&lt;h3&gt;Video Games&lt;/h3&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/a&gt;
&lt;!-- Kids and Family icon--&gt;
&lt;a href=&quot;category-right.html&quot;&gt;
&lt;div class=&quot;card-container&quot;&gt;
&lt;div class=&quot;card&quot;&gt;
&lt;div class=&quot;card-body&quot;&gt;
&lt;div class=&quot;row flex-wrap&quot;&gt;
&lt;div class=&quot;col-12&quot;&gt;
&lt;img src=&quot;img/eShop-Images/kids_family.png.png&quot; style=&quot;width: 56px;&quot;&gt;
&lt;h3&gt;Kids &amp; Family&lt;/h3&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/a&gt;
&lt;!--Office equipment --&gt;
&lt;a href=&quot;category.html&quot;&gt;
&lt;div class=&quot;card-container&quot;&gt;
&lt;div class=&quot;card&quot;&gt;
&lt;div class=&quot;card-body&quot;&gt;
&lt;div class=&quot;row flex-wrap&quot;&gt;
&lt;div class=&quot;col-12&quot;&gt;
&lt;img src=&quot;img/eShop-Images/office_equipment.png.png&quot; style=&quot;width: 56px;&quot;&gt;
&lt;h3&gt;Office equipment&lt;/h3&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;

答案1

得分: 1

&lt;!-- 开始片段:js 隐藏: false 控制台: true Babel: false --&gt;

&lt;!-- 语言: lang-css --&gt;

    @import url(&quot;https://fonts.googleapis.com/css2?family=Alegreya:wght@400;500;600;700&amp;family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,400&amp;family=Oxygen:wght@300;400;700&amp;family=Poppins:wght@100;200;300;400;500;700;800&amp;family=Roboto:ital,wght@0,100;0,300;0,500;0,700;0,900;1,400&amp;family=Source+Sans+Pro:wght@200;300;400;600;700&amp;display=swap&quot;);

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: &quot;Poppins&quot;, sans-serif;
    }

    .container {
      display: flex;
      flex-wrap: wrap;
      flex-direction: row;
      width: 600px;
      margin: 20px auto;
      justify-content: center;
      /* justify-content: space-between; */
      border: 1px solid;
    }

    h1 {
      text-align: center;
      font-size: 25px;
      margin-top: 10px;
    }

    .card {
      width: 250px;
      height: 250px;
      background-color: aqua;
      margin: 20px;
      border-radius: 6px;
      position: relative;
      cursor: pointer;
      box-shadow: 0px 1px 10px 0px lightgray;
    }

    .card-img img {
      height: 250px;
      width: 100%;
      border-radius: 5px;
    }

    .card-text {
      position: absolute;
      bottom: 0px;
      background-color: white;
      border-radius: 0 7px 0 5px;
      font-weight: bold;
      padding: 20px 30px 20px 5px;
    }

    .card-text a {
      text-decoration: none;
      color: black;
    }


&lt;!-- 语言: lang-html --&gt;

      &lt;section&gt;
          &lt;h1&gt;按类别购物&lt;/h1&gt;
        &lt;/section&gt;

        &lt;section&gt;
          &lt;div class=&quot;container&quot;&gt;
            &lt;div class=&quot;card&quot;&gt;
              &lt;div class=&quot;card-img&quot;&gt;
                &lt;img
                  src=&quot;https://cdn.pixabay.com/photo/2023/04/03/11/45/water-7896610_960_720.jpg&quot;
                  alt=&quot;&quot;
                /&gt;
                &lt;div class=&quot;card-text&quot;&gt;
                  &lt;a href=&quot;#&quot;&gt;视频游戏 GTA-5&lt;/a&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

            &lt;div class=&quot;card&quot;&gt;
              &lt;div class=&quot;card-img&quot;&gt;
                &lt;img
                  src=&quot;https://cdn.pixabay.com/photo/2023/04/03/11/45/water-7896610_960_720.jpg&quot;
                  alt=&quot;&quot;
                /&gt;
                &lt;div class=&quot;card-text&quot;&gt;
                  &lt;a href=&quot;#&quot;&gt;视频游戏 GTA-5&lt;/a&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

            &lt;div class=&quot;card&quot;&gt;
              &lt;div class=&quot;card-img&quot;&gt;
                &lt;img
                  src=&quot;https://cdn.pixabay.com/photo/2023/04/03/11/45/water-7896610_960_720.jpg&quot;
                  alt=&quot;&quot;
                /&gt;
                &lt;div class=&quot;card-text&quot;&gt;
                  &lt;a href=&quot;#&quot;&gt;视频游戏 GTA-5&lt;/a&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

            &lt;div class=&quot;card&quot;&gt;
              &lt;div class=&quot;card-img&quot;&gt;
                &lt;img
                  src=&quot;https://cdn.pixabay.com/photo/2023/04/03/11/45/water-7896610_960_720.jpg&quot;
                  alt=&quot;&quot;
                /&gt;
                &lt;div class=&quot;card-text&quot;&gt;
                  &lt;a href=&quot;#&quot;&gt;视频游戏 GTA-5&lt;/a&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

            &lt;div class=&quot;card&quot;&gt;
              &lt;div class=&quot;card-img&quot;&gt;
                &lt;img
                  src=&quot;https://cdn.pixabay.com/photo/2023/04/03/11/45/water-7896610_960_720.jpg&quot;
                  alt=&quot;&quot;
                /&gt;
                &lt;div class=&quot;card-text&quot;&gt;
                  &lt;a href=&quot;#&quot;&gt;视频游戏 GTA-5&lt;/a&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

            &lt;div class=&quot;card&quot;&gt;
              &lt;div class=&quot;card-img&quot;&gt;
                &lt;img
                  src=&quot;https://cdn.pixabay.com/photo/2023/04/03/11/45/water-7896610_960_720.jpg&quot;
                  alt=&quot;&quot;
                /&gt;
                &lt;div class=&quot;card-text&quot;&gt;
                  &lt;a href=&quot;#&quot;&gt;视频游戏 GTA-5&lt;/a&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

            &lt;div class=&quot;card&quot;&gt;
              &lt;div class=&quot;card-img&quot;&gt;
                &lt;img
                  src=&quot;https://cdn.pixabay.com/photo/2023/04/03/11/45/water-7896610_960_720.jpg&quot;
                  alt=&quot;&quot

<details>
<summary>英文:</summary>

** Here your question answer in Html and CSS. It&#39;s not like your question answer, but I think it&#39;s help you. Without Bootstrap.** 

&lt;!-- begin snippet: js hide: false console: true babel: false --&gt;

&lt;!-- language: lang-css --&gt;

    @import url(&quot;https://fonts.googleapis.com/css2?family=Alegreya:wght@400;500;600;700&amp;family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,400&amp;family=Oxygen:wght@300;400;700&amp;family=Poppins:wght@100;200;300;400;500;700;800&amp;family=Roboto:ital,wght@0,100;0,300;0,500;0,700;0,900;1,400&amp;family=Source+Sans+Pro:wght@200;300;400;600;700&amp;display=swap&quot;);

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: &quot;Poppins&quot;, sans-serif;
    }

    .container {
      display: flex;
      flex-wrap: wrap;
      flex-direction: row;
      width: 600px;
      margin: 20px auto;
      justify-content: center;
      /* justify-content: space-between; */
      border: 1px solid;
    }

    h1 {
      text-align: center;
      font-size: 25px;
      margin-top: 10px;
    }

    .card {
      width: 250px;
      height: 250px;
      background-color: aqua;
      margin: 20px;
      border-radius: 6px;
      position: relative;
      cursor: pointer;
      box-shadow: 0px 1px 10px 0px lightgray;
    }

    .card-img img {
      height: 250px;
      width: 100%;
      border-radius: 5px;
    }

    .card-text {
      position: absolute;
      bottom: 0px;
      background-color: white;
      border-radius: 0 7px 0 5px;
      font-weight: bold;
      padding: 20px 30px 20px 5px;
    }

    .card-text a {
      text-decoration: none;
      color: black;
    }


&lt;!-- language: lang-html --&gt;

      &lt;section&gt;
          &lt;h1&gt;Shop by Categories&lt;/h1&gt;
        &lt;/section&gt;

        &lt;section&gt;
          &lt;div class=&quot;container&quot;&gt;
            &lt;div class=&quot;card&quot;&gt;
              &lt;div class=&quot;card-img&quot;&gt;
                &lt;img
                  src=&quot;https://cdn.pixabay.com/photo/2023/04/03/11/45/water-7896610_960_720.jpg&quot;
                  alt=&quot;&quot;
                /&gt;
                &lt;div class=&quot;card-text&quot;&gt;
                  &lt;a href=&quot;#&quot;&gt;Video Games GTA-5&lt;/a&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

            &lt;div class=&quot;card&quot;&gt;
              &lt;div class=&quot;card-img&quot;&gt;
                &lt;img
                  src=&quot;https://cdn.pixabay.com/photo/2023/04/03/11/45/water-7896610_960_720.jpg&quot;
                  alt=&quot;&quot;
                /&gt;
                &lt;div class=&quot;card-text&quot;&gt;
                  &lt;a href=&quot;#&quot;&gt;Video Games GTA-5&lt;/a&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

            &lt;div class=&quot;card&quot;&gt;
              &lt;div class=&quot;card-img&quot;&gt;
                &lt;img
                  src=&quot;https://cdn.pixabay.com/photo/2023/04/03/11/45/water-7896610_960_720.jpg&quot;
                  alt=&quot;&quot;
                /&gt;
                &lt;div class=&quot;card-text&quot;&gt;
                  &lt;a href=&quot;#&quot;&gt;Video Games GTA-5&lt;/a&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

            &lt;div class=&quot;card&quot;&gt;
              &lt;div class=&quot;card-img&quot;&gt;
                &lt;img
                  src=&quot;https://cdn.pixabay.com/photo/2023/04/03/11/45/water-7896610_960_720.jpg&quot;
                  alt=&quot;&quot;
                /&gt;
                &lt;div class=&quot;card-text&quot;&gt;
                  &lt;a href=&quot;#&quot;&gt;Video Games GTA-5&lt;/a&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

            &lt;div class=&quot;card&quot;&gt;
              &lt;div class=&quot;card-img&quot;&gt;
                &lt;img
                  src=&quot;https://cdn.pixabay.com/photo/2023/04/03/11/45/water-7896610_960_720.jpg&quot;
                  alt=&quot;&quot;
                /&gt;
                &lt;div class=&quot;card-text&quot;&gt;
                  &lt;a href=&quot;#&quot;&gt;Video Games GTA-5&lt;/a&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

            &lt;div class=&quot;card&quot;&gt;
              &lt;div class=&quot;card-img&quot;&gt;
                &lt;img
                  src=&quot;https://cdn.pixabay.com/photo/2023/04/03/11/45/water-7896610_960_720.jpg&quot;
                  alt=&quot;&quot;
                /&gt;
                &lt;div class=&quot;card-text&quot;&gt;
                  &lt;a href=&quot;#&quot;&gt;Video Games GTA-5&lt;/a&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

            &lt;div class=&quot;card&quot;&gt;
              &lt;div class=&quot;card-img&quot;&gt;
                &lt;img
                  src=&quot;https://cdn.pixabay.com/photo/2023/04/03/11/45/water-7896610_960_720.jpg&quot;
                  alt=&quot;&quot;
                /&gt;
                &lt;div class=&quot;card-text&quot;&gt;
                  &lt;a href=&quot;#&quot;&gt;Video Games GTA-5&lt;/a&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

            &lt;div class=&quot;card&quot;&gt;
              &lt;div class=&quot;card-img&quot;&gt;
                &lt;img
                  src=&quot;https://cdn.pixabay.com/photo/2023/04/03/11/45/water-7896610_960_720.jpg&quot;
                  alt=&quot;&quot;
                /&gt;
                &lt;div class=&quot;card-text&quot;&gt;
                  &lt;a href=&quot;#&quot;&gt;Video Games GTA-5&lt;/a&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;

            &lt;!-- &lt;div class=&quot;card&quot;&gt;
              &lt;div class=&quot;card-img&quot;&gt;&lt;/div&gt;
              &lt;div class=&quot;card-text&quot;&gt;&lt;/div&gt;
            &lt;/div&gt; --&gt;
          &lt;/div&gt;
        &lt;/section&gt;

&lt;!-- end snippet --&gt;



</details>



huangapple
  • 本文由 发表于 2023年4月17日 09:04:14
  • 转载请务必保留本文链接:https://go.coder-hub.com/76031089.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定