joobie
Mitglied
Hallo,
Heute habe ich mal wieder eines dieser verrückten Probleme die wahrscheinlich nur dann passieren, wenn alles andere super geht. Es wäre ja keine Herausforderung wenn alles reibungslos funktionieren würde
Firefox in Windows Vista appliziert ein helles Cyan als Hintergrundfarbe für ein ansonsten transparentes DIV. Das ist wirklich interessant, weil ich selbst kein Vista habe und es nicht einmal testen kann.
Hier ist das Markup:
Ich habe das etwas vereinfacht und mit Kommentaren versehen. PROBLEMKIND bedeutet dass dieses DIV in Vista/Firefox einen Cyan-Hintergrund hat, und zwar wirklich nur in Vista/FF!
Hier is der CSS code:
Hat jemand eine Idee woran das liegen könnte? Die Seite validiert als XHTML transitional und CSS 2.1.
Danke im Voraus für jede Hilfe / Input!
Cheers
Heute habe ich mal wieder eines dieser verrückten Probleme die wahrscheinlich nur dann passieren, wenn alles andere super geht. Es wäre ja keine Herausforderung wenn alles reibungslos funktionieren würde

Firefox in Windows Vista appliziert ein helles Cyan als Hintergrundfarbe für ein ansonsten transparentes DIV. Das ist wirklich interessant, weil ich selbst kein Vista habe und es nicht einmal testen kann.
Hier ist das Markup:
Code:
<div class="box"> <!--hat width + margin-->
<div class="boxtop"><h2>Titel</h2></div> <!--hat width + height + background-image-->
<div class="boxbody"> <!--hat width + height + background-image -->
<form name="submit" action="submit.php" method="post" onsubmit="return validateEmail();">
<div class="row full"> <!--hat width; PROBLEMKIND********-->
<label>Email:</label>
<input class="formtxt" name="email" maxlength="250" type="text" />
<div class="small"> <!--hat width + margin-->
Blabla <a href="privacy-policy.php">Privacy Policy</a>
</div>
</div>
<input type="hidden" name="x" value="y" /><!--insgesamt 10 hidden fields an dieser Stelle-->
<input type="submit" class="formsubmit" value="Submit" />
</form>
</div><!--close boxbody-->
</div><!--close box-->
Ich habe das etwas vereinfacht und mit Kommentaren versehen. PROBLEMKIND bedeutet dass dieses DIV in Vista/Firefox einen Cyan-Hintergrund hat, und zwar wirklich nur in Vista/FF!
Hier is der CSS code:
Code:
.box { width:520px; margin:0 auto; }
.box .boxtop { width:515px; height:71px; padding:15px 0 0 25px; background:url(img/boxtop.jpg) no-repeat; }
.box .boxbody { width:520px; position:relative; }
form { padding:10px 20px 0 20px; }
form .row { width:295px; padding:5px 10px; overflow:hidden; }
form .row input.formtxt { padding:5px; font-size:1.4em; font-weight:bold; color:#4D4D4D; border:1px solid #D20019;}
form .row.full { width:460px; background:transparent; /*background added, kein Effekt*/ }
form .row.full input.formtxt { width:400px; }
form .row.full .small { width:240px; margin:0 0 0 45px; }
Hat jemand eine Idee woran das liegen könnte? Die Seite validiert als XHTML transitional und CSS 2.1.
Danke im Voraus für jede Hilfe / Input!
Cheers