html - 两个并排的 Div - 增加响应能力

标签 html css responsive

我有两个并排的 div,但似乎不知道如何让它们响应。

在 600px 或更低处寻找落在左框下方的右框,保持我在 div 内完成的所有其他居中。

每个并排的 div 分别有类 .div-seller-resources-left 和 .div-seller-resources-right。

我已经为每个文本框的高度使用了 600 像素的媒体屏幕,因此我也将使用 600 作为断点。

已附上它在正常大小的浏览器中的功能以及在较小屏幕上的外观的照片。如您所知,较小的屏幕会尽可能地压缩以适应一页上的所有内容。

enter image description here

enter image description here

/* formats the seller-resources page */
.div-header-seller-resources{
    font-size:30px;
    line-height:32px;
    margin-bottom:10px;
}
.div-detail-seller-resources{
    font-size:20px;
    line-height:22px;
    margin-bottom:45px;
}
/*sets the height of the div so each text box is the same size no matter how much text*/
.seller-resources-height{
    height: 125px;
}
/*main container of two side by side boxes*/
.div-main-container-seller-resources{
    width:100%;
    margin-top:30px;
    text-align: center;
    display: flex;
    justify-content: center;
}
/*div under main container, containing both right and left seller resourcs */
.seller-resources-inner{
    display: flex;
    flex-direction:row;
}
/*margin here centeres all the content within the div*/
.div-seller-resources-left{
    width: 300px;
    display: flex;
    text-align:center;
    margin:0px auto;
}
/*margin here centeres all the content within the div*/
.div-seller-resources-right{
    width: 350px;
    display: flex;
    text-align:center;
    margin:0px auto;
}
/* sets the text box screens taller at smaller screens so they don't overlap */
@media screen and (max-width: 600px) {
   .seller-resources-height{
    height:200px;
    }
}
@media screen and (max-width: 600px) {
   div-seller-resources-left .div-seller-resources-left{
    width:100%;
    }
}
<div class="div-main-container-seller-resources">
    <div class="seller-resources-inner">
    <div class="div-seller-resources-left" style="display: inline-block;">
        <div class="seller-resources-height">
            <div class="div-header-seller-resources"><a href="https://yodega.com/how-yodega-works/">How Yodega Works</a></div>
            <div class="div-detail-seller-resources">Learn about how Yodega works for sellers</div>
          </div>
            <div class="clear"></div>
        <div class="seller-resources-height">
            <div class="div-header-seller-resources"><a href="https://yodega.com/referrals/">Referrals</a></div>
            <div class="div-detail-seller-resources">Refer another business to reduce your fees</div>
        </div>
        <div class="clear"></div>
         <div class="seller-resources-height">
                <div class="div-header-seller-resources"><a href="https://yodega.com/how-to-sell-with-yodega/">How to Sell with Yodega</a></div>
            <div class="div-detail-seller-resources">Learn the best ways to promote your Yodega store</div>
         </div>
        <div class="clear"></div>
    </div>
    <div class="div-seller-resources-right" style="display: inline-block;">
        <div class="seller-resources-height">
            <div class="div-header-seller-resources"><a href="https://yodega.com/setting-up-your-store/">Setting Up Your Store</a></div>
            <div class="div-detail-seller-resources">Detailed instructions on how to build your store</div>
        </div>
        <div class="clear"></div>
        <div class="seller-resources-height">
            <div class="div-header-seller-resources"><a href="https://yodega.com/advanced-product-shipping/">Advanced Shipping &amp; Product Options</a></div>
            <div class="div-detail-seller-resources">Variable Shipping Costs, Add Product Details and More</div>
        </div>
        <div class="clear"></div>
        <div class="seller-resources-height">
            <div class="div-header-seller-resources"><a href="https://yodega.com/order-management-seller-dashboard/">Order Management, Seller Dashboard &amp; Payment</a></div>
            <div class="div-detail-seller-resources">Detailed information on how to manage and fill orders and payments</div>
        </div>
        <div class="clear"></div>
                </div>  
    </div>
</div>

最佳答案

我建议使用 flex-wrap 属性。在这种情况下,您可以强制将元素放入单个列中。 (参见 MDN Docs)

只需将 flex-wrap: wrap; 应用于 .seller-resources-inner 类(参见下面的代码片段)。

/* formats the seller-resources page */

.div-header-seller-resources {
  font-size: 30px;
  line-height: 32px;
  margin-bottom: 10px;
}

.div-detail-seller-resources {
  font-size: 20px;
  line-height: 22px;
  margin-bottom: 45px;
}


/*sets the height of the div so each text box is the same size no matter how much text*/

.seller-resources-height {
  height: 125px;
}


/*main container of two side by side boxes*/

.div-main-container-seller-resources {
  width: 100%;
  margin-top: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
}


/*div under main container, containing both right and left seller resourcs */

.seller-resources-inner {
  display: flex;
  flex-direction: row;
}


/*margin here centeres all the content within the div*/

.div-seller-resources-left {
  width: 300px;
  display: flex;
  text-align: center;
  margin: 0px auto;
}


/*margin here centeres all the content within the div*/

.div-seller-resources-right {
  width: 350px;
  display: flex;
  text-align: center;
  margin: 0px auto;
}


/* sets the text box screens taller at smaller screens so they don't overlap */

@media screen and (max-width: 600px) {
  .seller-resources-height {
    height: 200px;
  }
  .seller-resources-inner {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 600px) {
  div-seller-resources-left .div-seller-resources-left {
    width: 100%;
  }
}
<div class="div-main-container-seller-resources">
    <div class="seller-resources-inner">
    <div class="div-seller-resources-left" style="display: inline-block;">
        <div class="seller-resources-height">
            <div class="div-header-seller-resources"><a href="https://yodega.com/how-yodega-works/">How Yodega Works</a></div>
            <div class="div-detail-seller-resources">Learn about how Yodega works for sellers</div>
          </div>
            <div class="clear"></div>
        <div class="seller-resources-height">
            <div class="div-header-seller-resources"><a href="https://yodega.com/referrals/">Referrals</a></div>
            <div class="div-detail-seller-resources">Refer another business to reduce your fees</div>
        </div>
        <div class="clear"></div>
         <div class="seller-resources-height">
                <div class="div-header-seller-resources"><a href="https://yodega.com/how-to-sell-with-yodega/">How to Sell with Yodega</a></div>
            <div class="div-detail-seller-resources">Learn the best ways to promote your Yodega store</div>
         </div>
        <div class="clear"></div>
    </div>
    <div class="div-seller-resources-right" style="display: inline-block;">
        <div class="seller-resources-height">
            <div class="div-header-seller-resources"><a href="https://yodega.com/setting-up-your-store/">Setting Up Your Store</a></div>
            <div class="div-detail-seller-resources">Detailed instructions on how to build your store</div>
        </div>
        <div class="clear"></div>
        <div class="seller-resources-height">
            <div class="div-header-seller-resources"><a href="https://yodega.com/advanced-product-shipping/">Advanced Shipping &amp; Product Options</a></div>
            <div class="div-detail-seller-resources">Variable Shipping Costs, Add Product Details and More</div>
        </div>
        <div class="clear"></div>
        <div class="seller-resources-height">
            <div class="div-header-seller-resources"><a href="https://yodega.com/order-management-seller-dashboard/">Order Management, Seller Dashboard &amp; Payment</a></div>
            <div class="div-detail-seller-resources">Detailed information on how to manage and fill orders and payments</div>
        </div>
        <div class="clear"></div>
                </div>  
    </div>
</div>

关于html - 两个并排的 Div - 增加响应能力,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45943781/

相关文章:

html - 有没有办法连接 CSS 类选择器?

html - css3 中的动画

css - 具有百分比宽度的响应式 CSS 三 Angular 形

css - Cubism - 选定时间和行的值

css - 仅适用于 Internet Explorer 的媒体查询

javascript - Vue.js - 未捕获的类型错误 : Cannot read property 'push' of undefined at <anonymous>:1:12

php - 将 HTML 转换为图像

css - 我可以合并 :nth-child() or :nth-of-type() with an arbitrary selector? 吗

angular - 如何制作可滚动的垫列表

button - Fullcalendar 标题按钮没有响应?