Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- toString
- Redux
- 인라인블럭
- 블럭요소
- first-child
- useEffect
- 자바스크립트
- javascript코딩테스트
- 카우치코딩
- javascript React
- react
- sort
- JavaScript
- useParams
- React state
- React onClick
- redux toolkit
- JSON
- db.json
- Redux store
- line-through
- 콜백함수
- react redux
- 자바스크립트배포
- useSearchParams
- 6주포트폴리오
- redux 사용방법
- 협업프로젝트
- couchcoding
- foreach
Archives
- Today
- Total
개발하는 루루언니
초기 CSS 셋팅 하기 본문
728x90
반응형
📙 CSS를 작업하다보면 자주 사용하는 값이 있는데 초기에 미리 셋팅을 해주면서 CSS를 더 간편하게 작성할 수 있다.
@font-face {
font-family: 'NEXON Lv1 Gothic OTF';
src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@2.1/NEXON Lv1 Gothic OTF.woff') format('woff');
font-weight: normal;
font-style: normal;
}
/* Reset Css */
*{
box-sizing: border-box;
}
a ,Link{
text-decoration: none;
color:#222;
}
button, input{
outline: none;
}
h1,h2,h3,h4,h5,h6 {
margin-top: 0;
font-weight: normal;
line-height: 1.5em;
}
/* Default Css */
body{
font-family: 'NEXON Lv1 Gothic OTF',sans-serif;
font-size: 18px;
line-height: 1.7em;
margin:0;
background-color: #fff;
clear: #222;
}
728x90
'컴퓨터 정보 > css' 카테고리의 다른 글
CSS : hover와 transform / transition 을 이용해 버튼 효과 만들기 (0) | 2023.04.20 |
---|---|
CSS 수정할때 Full Reload 되는 현상 막기 (0) | 2023.04.19 |
CSS : active 버튼누르는 효과 (0) | 2023.02.14 |
CSS : 그라데이션 linear-gradient (0) | 2023.01.11 |
CSS : animation - direction 종류 (0) | 2022.12.13 |