Responsive Images
<img>
寬度設定為 100% 會撐滿容器:
若怕圖片超過原本像素,可在外容器加上img { width: 100%; height: auto; }
max-width
限制最大寬度:div { max-width: 294px; }
- 或是直接將
<img>
寬度用max-width: 100%
來指定:img { max-width: 100%; height: auto; }
背景圖自動覆蓋整個容器
.banner { background-image: url('../img/bigBanner.jpg'); width: 100%; height: 535px; background-size: cover; background-position: center; }
f21_responsive-images.html