web 개발/프론트엔드

<css> 기본 세팅

잼추 2023. 1. 4. 22:03

common : 기본 전체 세팅

폰트 값, 배경등 기초 세팅

 

#container {
    margin: 0px auto;
    width: 1400px;
}

input, select, textarea, table, th, td {
    border: 1px solid #dbdbdb;
    border-radius: 4px;
}

input, textarea {
    outline: none;
}

input, select, textarea {
    padding: 5px;
    cursor: pointer;
}

button {
    border: 1px solid #dbdbdb;
    border-radius: 4px;
    padding: 5px;
    background-color: white;
    cursor: pointer;
}

button:hover {
    background-color: #fafafa;
    color: #3e3e3e;
}

 

header 

모든 페이지의 header는 항상 같음 저장해두고 항상 연동

 

 

'web 개발 > 프론트엔드' 카테고리의 다른 글

<css> css 자주 쓰는 것 정리  (0) 2023.01.04
<html> html 태그 정리  (0) 2023.01.04