본문 바로가기

Javascript

기본 스타일 선언

@charset "utf-8";

/*

* default style definition

*/

body {

       margin: 0;

       padding: 0;

       font-size: 75%;

       line-height: 1.5em;

       font-family: "Malgun Gothic", "Lucida Grande", Tahoma, Verdana, AppleGothic, UnDotum, sans-serif;

}

form {

      margin: 0;

      padding: 0;

}

hr {

     display: none;

}

p,

div,

th,

td,

select,

input {         

       color: #333;

}

a:link,

a:visited {

             color: #666;

             text-decoration: none;

}

a:active,

a:hover {

             color: #000;

             text-decoration: none;

}

a img,

input.type-image {

                        border: 0 none;

}

input.type-text,

textarea {

             border: 1px solid #ddd;

             background: #fff;

             padding: 1px;

}

input.type-text:hover,

input.type-text:focus,

textarea:hover,

textarea:focus,

select:hover,

select:active {

                 background-color: #ffd;

}

input,

select,

textarea {

            vertical-align: middle;

            font-size: 1em;

            color: #333;

}

select {

          font-size: 11px;

          font-family: Dotum, "돋움", sans-serif;

}

span.button,

img.button,

a.button {

             cursor: pointer;

             vertical-align: middle;

}

'Javascript' 카테고리의 다른 글

어플리케이션과 웹의 장단점  (0) 2020.09.11
JS 이벤트 전파 중단하는 방법  (0) 2020.08.30
JS 정규표현식  (0) 2020.08.26
JS 비동기처리 callback 함수  (0) 2020.08.25
JS class  (0) 2020.08.24