분류 전체보기46 CSS(Cascading Style Sheets) 기본 CSS(Cascading Style Sheets), 종속형 시트 display block inline inline-block none : element가 아예 존재하지 않는 것처럼 보임 hidden : element가 존재(일부 공간이 할당됨)하나 화면에 보이지 않음 size 단위 px : Parent element와 무관하게 특정 크기를 지정 em : 모든 Parent element에 비례하여 크기가 조정됨 rem : Root HTML에 영향을 받아 비례적으로 크기가 조정됨 1rem = 16px, 3rem = 16 * 3px % : 바로 윗 Parent element에 비례하여 크기가 조정됨 Ref. https://www.youtube.com/watch?v=T1I9CsvHruQ&list=PLQFurmx.. 2021. 1. 31. Git 활용 branch 관련 git branch -m [기존 이름] [변경할 이름] : 브랜치 이름 변경 git branch -d [브랜치명] : 로컬 브랜치 제거 git push origin --delete [branchName] : 원격 브랜치 제거 git checkout [브랜치명] : 브랜치 변경 git checkout -b [브랜치명] : 브랜치 생성 및 변경 commit 관련 git commit -m "메세지" git commit -a : add와 동시에 commit git commit -am "메세지" : option -a 와 -m 을 합친 것 log 관련 git log git log --graph non-fast-forward 병합 관련 fatal: refusing to merge unrelated .. 2021. 1. 31. 이전 1 ··· 9 10 11 12 다음