Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 페이지랭크
- 파이썬
- 비동기 프로그래밍
- Readme image
- 머신러닝
- 파인만의 식당문제
- brew 권한
- image restoration
- 키분배 알고리즘
- 딥러닝
- feynman's restaurant
- 인페인팅
- 인공지능
- 러스트
- rust
- recommender
- 커널생성
- tcp
- pagerank
- 커널제거
- cs231n
- 프라미스
- computer vision
- 컴퓨터 보안 키분배
- react-cookie
- Hits
- 자바스크립트 비동기
- 메세지인증코드
- Git
- 협업필터링
Archives
- Today
- Total
Worth spreading
[css] parent의 높이를 child의 높이에 맞추기 본문
<body>
<div id="parent">
<div id="childRightCol">
/*Content*/
</div>
<div id="childLeftCol">
/*Content*/
</div>
</div>
</body>
위와 같은 예제에서 child의 height이 커지면 parent의 height도 따라서 커지게 하고 싶은 경우가 있을 것이다.
이 때 parent의 style에
overflow:auto;
를 추가해주면 된다.
한 가지 방법이 더 있는데
Parent:
display: table;
Child:
display: table-row;
이렇게 각각 스타일을 지정해주면 된다.
출처: https://stackoverflow.com/questions/384145/expanding-a-parent-div-to-the-height-of-its-children
'Web programming > html&css' 카테고리의 다른 글
prevent bounce on scroll (0) | 2018.10.30 |
---|---|
[css] display: inline 사이즈 조절 문제 (0) | 2018.07.29 |
[css] 박스 가운데정렬하기 (0) | 2018.07.29 |
[css] 화면 크기 조정시 박스들의 위치가 바뀌는 문제 (0) | 2018.07.29 |
Comments