0
我有這個textarea(它是展開後,點擊一個特定的按鈕),應該是該文本輸入字段。在FF和Chrome中,它正在工作。但不在IE(6 + 7)中。有沒有人有線索,問題在哪裏以及我如何解決?IE忽略zIndex
<html>
<head>
<style type="text/css">
.Tbl { width: 100%; }
.Col1 { width: 10%; }
.Col2 { width: 90%; }
.CellTA { background-color: #00F; vertical-align: top; padding: 5px; }
.DivTA { position: relative; }
.DivTA2 { position: absolute; background-color: #FF0; padding: 5px; }
.TA { position: relative; z-Index: 10; height: 50px; width: 200px; }
.CellInp { background-color: #F0F; padding: 5px; }
.DivInp { position: relative; width: 100%; background-color: #0F0; }
.Inp { position: relative; width: 200px; }
</style>
</head>
<body>
<table class="Tbl">
<colgroup>
<col class="Col1" />
<col class="Col2" />
</colgroup>
<tr>
<td>Ref</td>
<td class="CellTA">
<div class="DivTA">
<div class="DivTA2">
<textarea class="TA"></textarea>
</div>
</div>
</td>
</tr>
<tr>
<td>eMail</td>
<td class="CellInp">
<div class="DivInp">
<input type="text" class="Inp">
</div>
</td>
</tr>
</table>
</body>
</html>
預先感謝
編輯:添加填充和改變DivTA2的背景色
這就是解決方案!你讓我今天一整天都感覺很好 ;)。謝謝! – Prjio 2010-09-13 15:37:38
@Prjio:很高興我能幫忙:) – 2010-09-13 15:38:46