我有兩個相同的圖像。我幾乎總是顯示其中一張圖像,唯一的例外是在1001px - 1400px的視口中顯示剪切版本的圖像。由於某些原因,div
ID中的修剪圖像laptop2
company-information-block2-2
未縮放100%和height: auto
的全寬度。我無法弄清楚爲什麼,因爲它上面的圖像的結構完全相同。顯示時不顯示全高/寬度的圖像
我創建了一個小提琴來展示它。請進出視口1001-1400。
.section-blocks {
width: 50%;
height: auto;
display: inline-block;
vertical-align: top;
}
.section-block-img {
height: 100%;
width: 100%;
}
.laptop2 {
display: none;
}
#company-information-block2, #company-information-block2-2 {
height: auto;
}
/*----------------------------------------------MEDIA QUERY 1001 - 1400--------------------------*/
@media screen and (min-width: 1001px) and (max-width:1400px) {
.laptop2 {
display: block;
}
.laptop {
display: none;
}
}
<div id="company-information"><div id="company-information-block1" class="section-blocks">
<div class="company-container">
<div class="company-information-block-title mobile-none">ABC ABC</div>
<div class="company-information-block-title2 mobile-none">THE COMPANY</div>
<div class="company-information-block-description">Knowledge and experience are some of the words to describe
The Company. This company is a third generation, family-owned business that has been providing
regional services for over 60 years. The creative direction included a clean, modern and
simplistic approach for visitors to learn more about them. Functionally we knew showcasing services and projects
was the main objective. Viewing the multiple project photos and services is easy because of the dashboard approach.
The job summaries do not blend in together to allow each specific category to instantly catch the eye of their target
market.
</div>
</div>
</div><div id="company-information-block2" class="section-blocks"><img src="http://optimumwebdesigns.com/images/work/projects/eslich/laptop.jpg" alt="Optimun Designs Responsive Design" class="section-block-img laptop">
<div id="company-information-block2-2" class="section-blocks"><img src="http://optimumwebdesigns.com/images/work/projects/eslich/laptop2.jpg" alt="Optimun Designs Responsive Design" class="section-block-img laptop2">
</div></div>
這是你在找什麼? https://jsfiddle.net/n8udyrn4/1/ –