私はこれで一日中髪を引っ張っています。どんな助けでも大歓迎です!!
Chrome、IE、Safari には div の行があります。ここに多くの行を配置すると、展開されたコンテンツに合わせて外側の div (.formRow) が高くなります。IE では、div.formRow は同じサイズのままで、コンテンツdiv.formRow の下に移動します。私はすべてを試しました..誰もが何かアイデアを持っています...
ここに私のHTMLがあります:
<div class="formRow clear">
<div class="leftCell">
This is on the left<br>
This is a new line<br>
In FF and Chore, these new lines push the outer div down<br>
In IE, theselines just go over the botto of the outer div and it doesn't expand
</div>
<div class="rightCell">
This is on the right
</div>
<div class="rightNote">
X
</div>
<br class="clear">
</div>
これは、この HTML の CSS です。
br.clear {
clear:both;
}
div.formRow {
border-bottom: 1px solid #e4e4e4;
padding:20px;
font-size:11px;
color:#6a6a6a;
}
div.formRow div.leftCell {
width: 73%;
float:left;
}
div.formRow div.rightCell {
width: 20%;
float:left;
}
div.formRow div.rightNote {
width: 7%;
float:left;
}
助けてくれてありがとう