참조 : http://jsfiddle.net/b2BpB/1/
Q : box1과 box3을 부모 div의 상단에 정렬하려면 boxContainer
어떻게해야합니까?
#boxContainerContainer {
background: #fdd;
text-align: center;
}
#boxContainer {
display: inline-block;
border: thick dotted #060;
margin: 0px auto 10px auto;
text-align: left;
}
#box1 {
width: 50px;
height: 50px;
background: #999;
display: inline-block;
}
#box2 {
width: 50px;
height: 100px;
background: #999;
display: inline-block;
}
#box3 {
width: 50px;
height: 50px;
background: #999;
display: inline-block;
}
대단히 감사합니다 ...
승인 :이 질문은 이전에 https://stackoverflow.com/users/20578/paul-d-waite 에서 제공 한 답변에서 나옵니다 : CSS 요소를 가져와 컨텐츠 너비로 자동 크기 조정 및 동시에 중앙에 위치
vertical-align: top;
으로#boxContainer div
선택.div
내부의 모든 요소에 스타일을 적용 합니다boxContainer
.