Bootstrap으로 반응형 디자인 구현하기 - BreakPoint, Grid, Col 완벽 가이드
BreakPoint Row 태그 안의 Col 태그에 breakpoint별 비율을 아래와 같이 지정할 수 있다. function ResponsiveAutoExample() { return ( <Container> <Row> <Col className...
younggyo@dev:~/knowledge-base$ find . -type f | sort -r
개발하며 마주친 문제와 해결 과정을 오래 꺼내 볼 수 있는 텍스트로 남깁니다.
BreakPoint Row 태그 안의 Col 태그에 breakpoint별 비율을 아래와 같이 지정할 수 있다. function ResponsiveAutoExample() { return ( <Container> <Row> <Col className...
명령줄에서, 수정하고자 하는 커밋이 포함된 리포지토리로 이동. 텍스트 편집기에서 마지막 n 개 커밋의 목록을 표시하려면 git rebase -i HEAD ~ n 명령 입력. # Displays a list of the last 3 commits on the current branch $ git rebase -i HEAD~3 아래의 sh...
12100번: 2048-Easy 코드 gitHub static class SolutionImpl implements Solution { static class GameBoard { public int[][] cells = new int[boardSize][boardSize]; void rotate90() { ...