일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- CLASS
- sass
- 코드일기
- HTML
- 코딩퀴즈
- CSS
- 선택자
- 코딩문제
- 친해지기
- tailwindcss
- js
- Grid
- 코딩테스트
- display
- 코딩일기
- JavaScript
- column-gap
- regexp
- scss
- 코드다이어리
- frontend
- 정규식표현
- DOM
- Pseudo
- property
- vscode
- 가상클래스
- row-gap
- Coda
- Today
- Total
목록분류 전체보기 (75)
< Code diaries />
NodeList와 HTML Collection은 유사배열객체라서 배열의 모든 메소드를 사용할 수는 없다. NodeList우리가 document.querySelectorAll()로 HTML elements를 가져오면 Nodelist로 들어온다. apple mango blueberry HTML Collectionchildren 속성으로 가져온 것은 유사배열객체이다. A B Cconst ul = document.querySelector('ul')const lis = ul.children;console.log(lis)// HTMLCollection(3) [ li, li, li ]
1. 일반적인 수학식으로 계산하기 가능- percentage로 변환하기$size : 100 * 1% // 100%- 일반적인 계산$size : 100 - 3 * 5 // 90- pixel 계산$size : 100 * 2px // 200px 2. 같은단위의 계산식A. 단위가 같더라도 sass 에서는 곱하기 '*' 와 나누기 '/' 연산은 되지 않는다.$size : 100px * 3px- 위와같은 경우 숫자를 먼저 계산후 단위를 문자열로 이어붙인다.- 결과값 : 300px*px$size : 100px / 3- 에러 B. 더하기 '+' 와 빼기 '-'는 정상으로 연산이 가능하다.$size : 100px - 20px- 결과값 : 80px$size : 100px + 20px- 결과값 : 120px 3. ..
궁모닝 에브리원~!! ^^ 오늘은 HTML을 마크업할때 VS code에서 사용하는Emmet 문법을 정리해 볼게요 Emmet HTML 마크업을 조금 손쉽게 해줄 수있는 기능이며 알게모르게 우리가 쓰고있는 것도 있어요.방법 몇가지를 소개 해 봅니다. 맨 하단에 Emmet 단축키를 정리해놓은 사이트를 링크 걸어 두었어요~! 1. VS Code에서 설정하기Emmet 기능이 적용되지 않는다면, 아래의 화면에서 확인한다. - cmd + shift + p 눌러서 emmet을 검색한다.- 첫번째 나오는 Emmet:Balance(inward)을 선택한다.- 사용시 주의할 점은 띄어쓰기를 하지 않는다.- 단축키를 띄어쓰기없이 입력후 Tab키를 눌러 실행한다. 2. 다양한 사용방법을 알아보자. css 선택자..
Hash 테스트 사이트 https://emn178.github.io/online-tools/sha256.html SHA256This SHA256 online tool helps you calculate hash from string or binary. You can input UTF-8, UTF-16, Hex to SHA256. It also supports HMAC.emn178.github.io
https://tailwindcomponents.com/ Tailwind CSS Components - 600+ Free Examples and TemplatesA free repository of open source Tailwind CSS components and templates to bootstrap your new apps, projects or landing sites!tailwindcomponents.com https://tailwindcomponents.com/cheatsheet/ Tailwind CSS Cheat Sheet tailwindcomponents.com
아래의 순서대로 3가지를 모두 설치한다.package.json에서 버전확인npm i -D tailwindcss@latestnpm i -D postcss@latestnpm i -D autoprefixer@10.4.5 tailwind.config.js 파일 생성하기npx tailwindcss init 참고영상https://www.youtube.com/watch?v=YTwOhrVbf-c autoprefixer 설치에러 정리https://xpectation.tistory.com/224 [CSS] 'autoprefixer: Replace color-adjust to print-color-adjust. The color-adjust shorthand is currently deprecated.' 해결방au..