• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

CSS Resets

  • Ersteller Ersteller DerMitSkill
  • Erstellt am Erstellt am
Status
Für weitere Antworten geschlossen.
D

DerMitSkill

Guest
Hallo,
wollte mal fragen was ihr so von CSS Resets haltet?

z.B.:
Code:
@charset "UTF-8";

* {
  background-attachment : scroll;
  background-color : transparent;
  background-image : none;
  background-position : 0 0;
  background-repeat : no-repeat;
  border-color : transparent;
  border-style : none;
  border-width : 0;
  color: #000000;
  counter-increment : none;
  counter-reset : none;
  cursor : auto;
  direction : ltr;
  font-family : Helvetica, Arial, sans-serif;
  font-size : 100%;
  font-style : normal;
  font-variant : normal;
  font-weight : normal;
  letter-spacing : 0;
  line-height : 1em;
  margin : 0;
  max-height : none;
  max-width : none;
  min-height : 0;
  min-width : 0;
  outline-color : transparent;
  outline-style : none;
  outline-width : 0;
  padding : 0;
  text-decoration : none;
  text-transform : none;
  visibility : visible;
  white-space : normal;
  word-spacing : 0;
}

blockquote, q {
    quotes : "" "";
}

caption {
  caption-side : top;
}

del {
  text-decoration : line-through;
}

head {
  height : 100%;
}

ins {
  text-decoration : none;
}

ol,
ul {
  list-style-image : none;
  list-style-position : inside;
  list-style-type : none;
}

table {
  border-collapse : collapse;
  border-spacing : 0;
  empty-cells : hide;
  table-layout : fixed;
}
Denke, ist doch ganz nützlich, wenn man schon seine Standardwerte hat und nicht irgendeinen vordefinieren Dreck von den Browsern. So vergiss man auch nichts zu definieren und hats so wie man es haben will.

Was meint ihr dazu?
 
Wie kommst du denn auf sowas?
Code:
  background-attachment : scroll;
  background-color : transparent;
  background-image : none;
  background-position : 0 0;
  background-repeat : no-repeat;
  border-color : transparent;
  border-color : transparent;
background-images muß man ohnehin individuell anpassen.
Warum ausgerechnet no-repeat?

Formularelemente bekommst du nicht für alle Browser "zurückgestylt".
Sehe dir das mal in Opera und Safari an.

Was meinst mit Dreck?
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben