@@jobo:
nuqneH
auf twitter gehört http://www.catswhocode.com/blog/top-10-best-practices-for-front-end-web-developers
Die Überschrift des Artikels hätte heißen müssen: Top 10 best and worst practices for front-end web developers. Und dumm auch, dass die best practices und worst practices weder nach solchen geordnet noch als solche gekennzeichnet sind.
Use a CSS reset? Nein. [Meiert]
Use conditional comments? Nein. [Meiert]
Allerdings auch nicht solche Hacks wie
foo
{
height: 200px; /* normal browsers */
_height: 300px; /* IE6 */
.height: 250px; /* IE7 */
*height: 350px; /* All IEs */
}
sondern
foo
{
height: 200px; /* normal browsers */
}
* html foo
{
height: 300px; /* IE6 */
}
*+html foo
{
height: 250px; /* IE7 */
}
Qapla'
--
Volumen einer Pizza mit Radius z und Dicke a: pi z z a
Volumen einer Pizza mit Radius z und Dicke a: pi z z a