我正在爲一件事而掙扎。我編碼的PSD爲HTML,但是當我想讓我的網站響應我無法修復一個div的問題。與響應式設計搏鬥
https://codepen.io/Dzonyy/pen/jmjOWV
.features_items {
margin: 0 auto;
display: flex;
flex: column;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.features_item {
padding: 200px 0 100px 0;
text-align: center;
position: relative;
}
.features_items h3 {
padding-top: 80px;
color: #f4d320;
}
.features_item_text {
padding-top: 15px;
line-height: 200%;
}
.features_items_person {
background: url(../images/person.png) top 20% center no-repeat;
}
.features_items_cloud {
background: url(../images/cloud.png) top 20% center no-repeat;
}
.features_items_database {
background: url(../images/database.png) top 20% center no-repeat;
}
.features_items_monitoring {
background: url(../images/screen.png) top 20% center no-repeat;
}
.features_items_person:before,
.features_items_cloud:before,
.features_items_database:before,
.features_items_monitoring:before {
content: "";
position: absolute;
border-bottom: 2px solid #8d8d99;
height: 1px;
width: 15%;
top: 48%;
left: 43%;
}
<div class="features_items">
<figure class="features_item features_items_person">
<h3>Live Support</h3>
<figcaption class="features_item_text">This is Photoshops version of Lorem Ipsum.Proin gravida nibh vel velit auctor aliquet.</figcaption>
</figure>
<figure class="features_item features_items_cloud">
<h3>Cloud Technology</h3>
<figcaption class="features_item_text">This is Photoshops version of Lorem Ipsum.Proin gravida nibh vel velit auctor aliquet.</figcaption>
</figure>
<figure class="features_item features_items_database">
<h3>Hi Tech Database</h3>
<figcaption class="features_item_text">This is Photoshops version of Lorem Ipsum.Proin gravida nibh vel velit auctor aliquet.</figcaption>
</figure>
<figure class="features_item features_items_monitoring">
<h3>Live Monitoring</h3>
<figcaption class="features_item_text">This is Photoshops version of Lorem Ipsum.Proin gravida nibh vel velit auctor aliquet.</figcaption>
</figure>
</div>
總是在同一車道? 如何使它們在2行中有2列,最大寬度爲1024px?
由默認的Flex容器是'無wrap',才使容器'柔性包裝:wrap' https://開頭的CSS -tricks.com/snippets/css/a-guide-to-flexbox/ – Huangism
你想使用Bootstrap嗎? –