我有一個導航和section-top
框是88%
高(無px值)。我怎樣才能使我的圖像響應?當我在手機上查看網站時,圖像只有一半,我希望它和頁面一樣高。與響應式圖像%
#views_slideshow_cycle_teaser_section_home_view-block .views-field-field-home-image img{
width:100%;
height:100%;
margin-top:-50px;
}
#section-top{
position:absolute;
overflow:hidden;
height:88%;
width:100%;
}
HTML
<div id="section-top">
<div id="featured">
<?php print render($page['featured']);?>
</div>
</div>
我與height:88%
工作的原因是因爲當我設置一個像素值,那麼它不會涵蓋在更大分辨率的頁面。
圖像上傳與CMS系統,所以不能設置它作爲背景 – Greg 2014-12-13 13:50:52
''中的百分比而不是固定值? – Mardzis 2014-12-13 13:54:16