»Jetzt gibt’s was auf die Ohren!« »Dinosigner.« »Wissen Sie wie man wirbt?« »Sudo instead of please.« »Lmgtfy!« »Dinosigner.« »GEMA; no more.« »How can we be of service?« »Innovative? Yes, we catalyse trends!« »Innovativ? Wir katalysieren Trends zeitnah!« Audiovisuelle Komposition

collected css snippets

collected css snippets

 Stylized Web

Stylized Web hat die wichtigsten sinnvollen CSS Hacks und gute WordPress-Tips

1. Formulare ohne Tabellen

<form>
<label for=”name”>Name</label>
<input id=“name“ name=”name”><br>
<label for=”plz”>PLZ</label>
<input id=“plz“ name=”plz”><br>
<label for=”stadt”>Stadt</label>
<input id=“stadt“ name=”stadt”><br>
</form>

label, input {
display: block;
width: 500px;
float: left;
margin-bottom: 2em;
}

label {
text-align: right;
width: 200px;
padding-right: 20px;
}

br {
clear: left;
}

Fun with forms:

http://www.picment.com/articles/css/funwithforms/