1. TypeScript(타입스크립트) type 만들기, type 종류
2022. 6. 11. 23:49
Frontend/HTML, CSS, DOM, jQuery
1.형식 만들기 const a : number = 1 const b : string = "1" const c :bolean = true const d : boolean | string = false 2. 형식 종류 Tuple ["nico", 12, true] readonly const player: readonly [string, number, boolean] = [ "nico", 1, true] plyaer.push["123"]
padding 때문에 사이즈 width가 더 커질때 'box-sizing' 주기
2021. 12. 19. 08:04
Frontend/HTML, CSS, DOM, jQuery
box-sizing 너비를 200w줬는데, 패딩 50을 줘서 250px가 될떄 패딩에 상관없이 주는 너비, 즉 200을 유지하도록 하기 위해 box-sizing:border-box를 주면 된다. .div{ box-sizing:border-box; } box-sizing:border-box 주면 된다. box-sizing:border-box;
CSS) navigation(네비게이션) 아래 위치에 고정 레이아웃
2021. 12. 19. 06:46
Frontend/HTML, CSS, DOM, jQuery
.nav{ position:fixed; bottom:0; width:100%; box-sizing:border-box; }
CSS)레이아웃 중앙(가운데) 맞추는법
2021. 12. 18. 16:36
Frontend/HTML, CSS, DOM, jQuery
body{ height:100vh; background-color:#FE6447; display:flex; justify-content:center; align-items:center; } height:100vh; 하고 flex쓰면 된다.