Ticket #478 (closed defect: wontfix)
Xinha moves text area...
| Reported by: | James | Owned by: | gogo |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Xinha Core | Version: | trunk |
| Severity: | normal | Keywords: | |
| Cc: |
Description
I'm using Xinha within a css positiond form:
.myform {
width: 600px; padding: 5px; margin: 30px auto;
}
.myform .row {
clear: both; padding-top: 5px;
}
.myform label {
text-align: right; width: 125px; float: left; padding-right: 10px;
}
.myform textarea {
width: 457px;
}
<div class="myform" id="myform">
<form action="myform.php" method="post">
<div class="row">
<label for="xinha">Label:</label> <textarea id="xinha" name="xinha" cols="60" rows="12"></textarea>
</div>
</form>
</div>
Without Xinha (or before Xinha converts the textarea the page looks correct:
Label: [ ]
However, once the Xinha script converts the area it has moved (you can see it move):
Label:
[ ]
The script shold convert the text area in place, and not move it. This behavior occurs with IE6 but not with FireFox? 1.03.
