일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- HTTP
- kotliln
- 개미수열
- 이렇게살아야되나자괴감이
- 지수반등
- cross parameter
- 리얼월드HTTP
- 랜선아미안해
- 클래스레벨밸리데이션
- jsr380
- cache-control
- LastModified
- 코드스피츠
- jsr303
- 워드프레스
- 알게뭐냐
- brotli
- Spring
- Kotlin
- 알고리즘
- 스프링
- etag
- 지뢰찾기
- 브로틀리
- i18n
- Today
- Total
목록FrontEnd (35)
취미개발 블로그와 마음수양
구글 웹폰트 깨지는 현상 고치기~ /* This is the default font face used for all browsers. */ @font-face { font-family: 'chunk-webfont'; src: url('../../includes/fonts/chunk-webfont.eot'); src: url('../../includes/fonts/chunk-webfont.eot?#iefix') format('eot'), url('../../includes/fonts/chunk-webfont.woff') format('woff'), url('../../includes/fonts/chunk-webfont.ttf') format('truetype'), url('../../includes/fon..
출처 : http://stackoverflow.com/questions/7273338/how-to-vertically-align-an-image-inside-div =======================css/*background: url('../images/question.png') no-repeat center center transparent;*/ =======================The only (and the best cross-browser) way as I know is to use an inline-block helper with height: 100% and vertical-align: middle on both elements.So there is a solution: htt..
// 방법 1 ddddeeee aaaaaaaaaaaaaaaaaaadddddddddddddddddddddddddddddddddabbbb ddddeeee gggghhhh //방법2 출처 : http://www.datguri.net/4314
$(A).appendTo(B) A를 B의 뒷부분에 추가$(A).prependTo(B) A를 B의 앞부분에 추가 $(A).insertAfter(B) A를 B의 뒤에 추가$(A).insertBefore(B) a를 b의 앞에 추가 $(A).append(B) B를 A의 앞에 추가$(A).append(B) B 를 A의 앞부분에 추가$(A).after(B) B를 A의 뒤에 추가$(A).before(B) B를 A의 앞에 추가
//파라미터에서 객체를 뽑아와서 GuestBookArticle article = paramToObject(req); //디비에 넣고 결과값이 실패가 아니면 int result = service.write(article); if (result != 0) { //제이쏜으로 변환시켜서 보낸다. 구글의 Gson이 그것을 도와준다. List list = new ArrayList(); list.add(article.getId()); list.add(article.getNick()); list.add(article.getComment()); list.add(article.getSecret() + ""); list.add(article.secretIp()); String json = new Gson().toJson(l..
$('#commonPanel').show(); $('#commonPanel').css("display", "none"); 이 둘의 차이는 뭐랄까. 액션걸면 쇼하이든 잘 안걸릴때가 있는데저렇게 디스플레이로 주면 확실하게 걸린다.
거의 대부분 윤인성님 책에서 받은 소스입니다.
픽셀과 퍼센트 조종 방법 하지만 이렇게 할 경우.. 퍼센트 div에서 퍼센트로 주면 사이즈를 잘 못 읽는다 이럴때는 height: calc(100% - 18px);It's worth it to note that not all browsers currently support the standard CSS3 calc() function, so implementing the browser specific versions of the function may be required like the following:/* Firefox */ height: -moz-calc(100% - 18px); /* WebKit */ height: -webkit-calc(100% - 18px); /* Opera */ height:..