1. 한줄일 경우 팁 div { width: 200px; height: 100px; border: 1px solid; background: yellow; text-align: center; line-height: 100px; box-sizing: border-box;}line-height: 100px; 와 heigth 높이 를 같이 맞쳐서 글자가 원래 박스 맨윗부분에 붙으려는 성질을 높이의 정중앙에 배치하려는 성질 이용-두줄일때 정중앙 배치가 깨짐 2.flex 박스 이용div { display: flex; justify-content: center; /* 가로 가운데 */ align-items: center; /* 세로 가운데 */ height: 100px;}한줄이든 두줄이든 ..
어제 새로운 깃허브 계정을 생성하고 ssh 키생성하고 - 깃허브 계정에 ssh키등록도 마치고 로그인이 하고 커밋 푸쉬까지 잘 넣은걸 확인했다 다음날 다시 새로운 레파지토리가 필요해서 리모트를 연결하는데 잘 되지 않았다 error: src refspec main does not match any error: failed to push some refs t... 현 ssh-agent가 들고있는 키목록확인ls -al ~/.ssh키목록에는 어제 생성한 id.pub가 있었고 실제 키 로 대조 해본결과 깃허브설정에 등록되 어있는 키내용과도 같았다ssh-keygen -lf ~/.ssh/id_.pub ~/.ssh/config 때문에 엉뚱한 키/옵션이 적용되는지 확인해보니cat ~/.ssh/config이전..