---
title: "collected css snippets"
description: "Werbeagentur Wegberg"
url: "https://www.digital-noises.com/collected-css-snippets/"
canonical: "https://www.digital-noises.com/collected-css-snippets/"
type: "WebPage"
date_published: "2007-06-01T12:31:22+02:00"
date_modified: "2008-06-24T22:30:44+02:00"
author: "florian"
locale: "de_DE"
---

# collected css snippets

 http://stylizedweb.com/2008/06/13/useful-wordpress-tricks/

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/ ](http://www.picment.com/articles/css/funwithforms/)
