repository를 미리 생성해 놓고 작업 디렉토리로 이동 >> git init>> git add .>> git commit -m "first commit">> git remote add origin .git>> git push origin master >> git id/password 입력
jQuery를 이용하여 아이콘을 누르면 테이블을 접고 펴는 기능 구현. 소스는 간단하니 codepen에서 소스 참조하세요. See the Pen Table Tr tag toggle / jquery by homin ahn (@beans9) on CodePen.
bootstrap에서 기본적으로 제공하는 테이블에 경우 글씨 크기나 줄간격등이 마음에 들지 않아 css를 이용하여 변경codepen.io에서 확인가능 See the Pen bootstrap table css by homin ahn (@beans9) on CodePen.
- bootstraphttp://getbootstrap.com - semantic-uihttp://semantic-ui.com - foundationhttp://foundation.zurb.com - pure csshttp://purecss.io
기본명령어 - checkout>> git checkout - file add>> git add * >> git add test.java // 특정파일만 등록할 때 - commit>> git commit -m "commit message" - push>> git push origin master
- Goalspringboot 프로젝트에 bower,gulp를 이용한 frontend library 관리 - Time15min - Enviromentjava 1.8, STS3.7 - Tutorial 아래 포스팅에 이어서 작성합니다. 2016/11/14 - [Springboot] - [springboot] sts로 springboot + gradle + thymeleaf 프로젝트 만들기 .bowerrc 파일 작성1234{ "directory":"src/main/resources/static/bower_components", "json":"bower.json"}Colored by Color Scriptercs 콘솔창에서 bower init 으로 bower.json 파일 생성 하고 jquery를 예제로 설치1..