Hallo Leute, ich bin langsam am verzweifeln... Ich hatte mich bereits damit abgefunden, dass die M$ dem W3C standard entzieht un ihr eignes ding machen, aber nun musste ich feststellen, dass Opera, Safari und auch bei Chrome unterschiedliche darstellungen, im Vergleich zum Firefox browser, erreicht werden! Hier mal eine kleine screenshotreihe: Firefox Chrome Opera Safari IExplorer Interessanterweise stellt der iexplorer es richtig dar xD hat einer ne ahnung was das ganze soll, oder bin ich zu blöd? hier mal der kleine codeschnipsel dazu:
CSS:
mfg
ani
HTML:
<div id="gbWriteSec">
<form name="addForm" method="post" action="">
<div id="gbWriteSecLeft">
<label title="gbName"><?php echo MyDataBase::getKeyword('NAME'); ?>:</label>
<input tabindex="1" type="text" class="input" name="tbgName" onfocus='setActive(this);' onblur='setNotActive(this);' />
<input tabindex="3" type="submit" class="input" id="bgbSave" name="bgbSave" value="<?php echo MyDataBase::getKeyword('EDIT'); ?>"
onmouseover='setButtonFocus(this);'
onmouseout='setButtonNotFocus(this);'
onmousedown='setButtonPress(this);'
onmouseup='setButtonUp(this);'
onfocus='setButtonFocus(this);'
onblur='setButtonNotFocus(this)' />
</div>
<div id="gbWriteSecRight">
<label title="gbText"><?php echo MyDataBase::getKeyword('ENTRY'); ?>:</label>
<textarea tabindex="2" name="tagbEntry" class="input" onfocus='setActive(this);' onblur='setNotActive(this);' rows="0" cols="0" ></textarea>
</div>
<input type='hidden' name='lang' value='<?php echo $_SESSION['lang']; ?>' />
<input type='hidden' name='func' value='add' />
</form>
</div>
Code:
#gbWriteSec {
height:100px;
border-bottom:2px solid black;
}
#gbWriteSecLeft{
float:left;
width:210px;
}
#gbWriteSecRight{
float:left;
}
#gbWriteSecLeft label,
#gbWriteSecRight label{
display:block;
width:60px;
float:left;
}
#gbWriteSec input#bgbSave {
float:left;
clear:both;
margin-top:45px;
margin-left:60px;
width:140px;
}
#gbWriteSec textarea {
width:395px;
height:90px;
font-size:10pt;
font-weight:normal;
}
ani