我想將圖像(現在只是一個佔位符)放在其左欄的底部,我如何實現這一點?如何在一個元素的底部對齊圖像?
我試着調整幅度爲<img>
類。我認爲auto
在頂部邊距(看我設置它的高度)將以相同的方式自動工作的中心項目工作。不用找了。
是否需要指定margin
作爲圖像的頂部(取決於它的高度),還是我可以以另一種方式做到這一點?
我也試過vertical-align: bottom;
,但再次沒有變化。
這裏是我的HTML:
<div class="pageArea">
<div class="rowHalfImages">
<div class="rowFirstPad"> <img width="100%" height="300px" /> </div>
</div>
<div class="rowHalf">
<div class="rowSecondPad">
<h1>DSC</h1>
<p class="introPara">Hello.</p>
<p>Lorem upsum diosks d amei sfor. More dojrn nbutforge absirns sie, for the siemssmsie a s. During which time the enovleo, will apela, hibt bdeue nf o the dirj, sisnr rufndf. Soerm iejrj ssleoe, orf risms, prod, ddvs sos anmd. Recent doejd aba dor the ssie dimjsiuend duekopmnvuer dmuie doe. Maolske, nfi sikeie. Adie dows. Osleifspd fi tje sos, gjsdijchfu.</p>
<p>Lorem upsum diosks d amei sfor. More dojrn nbutforge absirns sie, for the siemssmsie a s. During which time the enovleo, will apela, hibt bdeue nf o the dirj, sisnr rufndf. Soerm iejrj ssleoe, orf risms, prod, ddvs sos anmd. Recent doejd aba dor the ssie dimjsiuend duekopmnvuer dmuie doe. Maolske, nfi sikeie. Adie dows. Osleifspd fi tje sos, gjsdijchfu.</p>
</div>
</div>
<div class="clearBoth"></div>
</div>
我的CSS:
.pageArea {
max-width: 1200px;
margin: 0px auto;
padding: 0;
}
.rowHalf {
width: 50%;
float: right;
margin: 0;
padding: 0;
}
.rowHalfImages {
width: 50%;
float: left;
height: 100%;
padding: 0;
}
.rowFirstPad {
padding: 0 2% 0 2%;
}
.rowFirstPad img {
vertical-align: bottom;
margin: auto 0;
}
.rowSecondPad {
padding: 0 0 0 2%;
}
是EM或REM更好的方式來在CSS現在的措施? – cmp
@cmp,這取決於你,重要的是要知道它涉及什麼和你需要什麼 –