2009年7月4日

CSSデフォルトReset

投稿者: 管理者

CSSデフォルトResetで、最初に書いておくとよい。CSSをやり始めた当初、デフォルトでマージンなどがあることがわからず、けっこう悩んだものだ・・・

/* Reset ------------------------------------------------------------------ */
:link,:visited {
text-decoration: none;
}
html,body,div,
ul,ol,li,dl,dt,dd,
form,fieldset,input,textarea,
h1,h2,h3,h4,h5,h6,pre,code,p,blockquote,hr,
th,td {
margin: 0;
padding: 0;
}
h1,h2,h3,h4,h5,h6 {
font-size: 1em;
font-weight: normal;
}
table {
border-spacing: 0;
}
fieldset,img,abbr,acronym {
border: 0;
}
ol,ul {
list-style: none;
}
caption,th {
text-align: left;
}
q:before,q:after {
content: ”;
}
a {
text-decoration: underline;
outline: none;
}
hr {
border: 0;
height: 1px;
background-color: #000;
color: #000;
}
a img,:link img,:visited img {
border: none;
}
address {
font-style: normal;
display: inline;
}