본문 바로가기

basic/CSS

Simple reset css

body,
h1, h2, h3, h4, h5, h6,
ul, ol, dl, dd,
p,
fieldset, legend {
    margin: 0;
    padding: 0;
}
body, input, textarea, select, button {
    font-size: 14px;
    font-family: Dotum,'돋움',Helvetica,"Apple SD Gothic Neo",sans-serif;
}
ul, ol {
    list-style: none;
}
table {
    border-collapse: collapse;
}
em {
    font-style: normal
}
{
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    vertical-align: top;
}
fieldset {
    border: 0;
}

'basic > CSS' 카테고리의 다른 글

텍스트 말줄임 ...  (0) 2021.06.09
float 해제 하는법  (0) 2021.06.08
css blind 요소 숨김처리 기법  (0) 2021.06.08
배경색 투명  (0) 2021.05.20
class 작명법  (0) 2021.05.20