Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 랜선아미안해
- i18n
- cache-control
- 지수반등
- brotli
- etag
- LastModified
- 브로틀리
- jsr380
- 이렇게살아야되나자괴감이
- 리얼월드HTTP
- 워드프레스
- kotliln
- 개미수열
- 알고리즘
- 스프링
- HTTP
- 지뢰찾기
- Spring
- jsr303
- Kotlin
- cross parameter
- 알게뭐냐
- 코드스피츠
- 클래스레벨밸리데이션
Archives
- Today
- Total
취미개발 블로그와 마음수양
픽셀과 퍼센트로 조종하기. 본문
픽셀과 퍼센트 조종 방법
<div id="wrapper" style="width: 100%">
<div id="left" style="background-color: Blue; height: 100px; float: left; width: 200px;"></div>
<div id="right" style="background-color: Aqua; height: 100px; margin-left: 200px;"></div>
</div>
하지만 이렇게 할 경우.. 퍼센트 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: -o-calc(100% - 18px);
/* Standard */
height: calc(100% - 18px);
이런 식으로 퍼센트에서 픽셀을 빼주면 된다.
'FrontEnd > HTML5 _CSS' 카테고리의 다른 글
이미지 가운데에 넣기~ vertical image (0) | 2014.06.25 |
---|---|
테이블 Td 감싸기..싸이즈 딱 맞게. (0) | 2014.06.11 |
show(), display (css) 차이. ㅋ (0) | 2014.06.04 |
css 사이트 모음 (0) | 2014.05.28 |
css 사용하는 세가지 방법 ! (0) | 2014.05.14 |