Created
November 11, 2010 10:42
-
-
Save jensgro/672328 to your computer and use it in GitHub Desktop.
Eingabefelder können deaktivert sein. Anbei der passende Style, der auf eine Klasse baut, damit es auch der IE6 kapiert.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* deaktivierte Eingabefelder */ | |
.deact input.input-text { | |
border: none; | |
color: #666; | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- .input-text-cnt deact --> | |
<div class="input-text-cnt deact"> | |
<label for="vorname">Vorname*:</label> | |
<input type="text" disabled="disabled" class="input-text" id="vorname" value="Hänschen" /> </div> | |
<!-- /.input-text-cnt deact --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment