我在这里有一个 JSFiddle:http: //jsfiddle.net/PEHbr/1 出于某种原因,我无法将图像高度设置为 50%。
<div class="column img">
<div class="images right">
<img src="{path-to-image}" />
</div>
</div>
CSS:
.row {
display: table-row;
width: 100%;
}
.column { display: table-cell; height: 100%; position: relative; }
.img { width: 22%; }
.txt { width: 50%; vertical-align: middle; }
.text p {
width: 90%;
margin: 10px auto;
line-height: 1.5;
white-space: pre-wrap;
font-size: 18px;
font-family: Lato;
}
.right { text-align: right; }
.images { height: 100%; position: relative; }
.images img { height: 50%; }
为什么我不能正确编辑图像的高度?
编辑:
我已经替换了src
图像的,它适用于比高和正方形更宽的图像,但我要使用的图像是高矩形,这不起作用。为什么是这样?