我知道我在想念着簡單的東西,但我不能得到究竟CSS底部poperty工程奇怪
HTML:
<div class="form-captions">
<div class="form-text">
Caption
</div>
<div class="form_error" style="display: block;">
sfgsdfg
asdf safgsafdgsdfgsdfgsdfghsdfhsdghs
asfdasssssssssssssssssssssssssssssssssssssssssssssssssss
sssssssssssssssssssssssssssssssssssssssfgsdf
</div>
<div class="clearfix"></div>
</div>
CSS:
.clearfix{
clear: both;
}
.form-captions {
width: 100%;
height: auto;
display: block;
clear: both;
padding-top: 20px;
min-height: 20px;
position: relative;
}
.form-text {
width: 100px;
font-size: 16px;
height: 20px;
color: rgb(29, 29, 29);
text-align: left;
position: relative;
float: left;
clear: left;
bottom: 0;
}
.form_error {
color: darkred;
float: right;
display: none;
margin-left: 5%;
width: 65%;
}
對於形式 - 文本塊底部不是從形式字幕塊的底部(與頂部相同的位置「0;」)工作。但它起作用並對價值變化做出反應。
我怎樣才能使它從底部工作或我如何可以將文本移動到這個塊的「形式 - 字幕」的底部?
感謝
你能可能表明期望的結果的截圖? – Aziz
[here](http://i.imgur.com/5Am1fM2.png) – CrazyWu
你的意思是類似於https://jsfiddle.net/181Lky0n/6/? – silviagreen