D
DerMitSkill
Guest
Hallo,
wollte mal fragen was ihr so von CSS Resets haltet?
z.B.:
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?
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;
}
Was meint ihr dazu?