float : left div를 가운데에 정렬?
이미지 그룹을 페이지에 가로로 표시하고 싶습니다. 각 이미지 아래에는 몇 개의 링크가 있으므로 각 이미지 / 링크 그룹 주위에 컨테이너를 배치해야합니다.
내가 원하는 것에 가장 가까운 것은 float : left 인 div에 넣는 것입니다. 중간 문제는 컨테이너가 중간이되는 것입니다. 어떻게 할 수 있습니까?
display:inline-block;
float 대신 사용
수레를 가운데에 놓을 수는 없지만 인라인 블록은 마치 텍스트 인 것처럼 가운데에 배치 할 "행"외부 전체 컨테이너에 text-align: center;
다음을 수 있습니다. 컨테이너에 대해 inline-block;
다시 접근 할 수 있습니다. -필요한 경우 텍스트를 왼쪽으로 정렬
CSS Flexbox는 요즘 잘 지원 됩니다. flexbox에 대한 좋은 안내를 보려면 여기 로 이동하십시오 .
이 모든 최신 브라우저에서 잘 작동합니다.
#container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.block {
width: 150px;
height: 150px;
background-color: #cccccc;
margin: 10px;
}
<div id="container">
<div class="block">1</div>
<div class="block">2</div>
<div class="block">3</div>
<div class="block">4</div>
<div class="block">5</div>
</div>
어떤 사람들은 display : inline-block을 사용하지 않는 이유를 묻습니다. 더 간단한 일의 경우에는 괜찮지 만 블록 코드가 있으면 안될 레이아웃이 더 이상 중앙에 배치되지 않을 수 있습니다. Flexbox는 부동보다 안정적입니다.
다음과 같이 시도하십시오.
<div id="divContainer">
<div class="divImageHolder">
IMG HERE
</div>
<div class="divImageHolder">
IMG HERE
</div>
<div class="divImageHolder">
IMG HERE
</div>
<br class="clear" />
</div>
<style type="text/css">
#divContainer { margin: 0 auto; width: 800px; }
.divImageHolder { float:left; }
.clear { clear:both; }
</style>
플로팅 요소를 제공하고 <div>
다음 CSS를 제공합니다.
.wrapper {
display: table;
margin: auto;
}
아마도 이것이 당신이 찾고있는 것입니다 -https : //www.w3schools.com/css/css3_flexbox.asp
CSS :
#container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.block {
width: 150px;
height: 150px;
margin: 10px;
}
HTML :
<div id="container">
<div class="block">1</div>
<div class="block">2</div>
<div class="block">3</div>
</div>
.contentWrapper {
float: left;
clear: both;
margin-left: 10%;
margin-right: 10%;
}
.repeater {
height: 9em;
width: 9em;
float: left;
margin: 0.2em;
position: relative;
text-align: center;
cursor: pointer;
}
참고 URL : https://stackoverflow.com/questions/5523632/aligning-a-floatleft-div-to-center
'IT' 카테고리의 다른 글
클래스가 클래스를 확장하고 인터페이스를 구현할 수 있습니까? (0) | 2020.09.05 |
---|---|
Python에서 노드의 이스케이프 시퀀스 처리 (0) | 2020.09.04 |
Android 작업 표시 줄에 오버플로가 표시되지 않음 (0) | 2020.09.04 |
Pandas 데이터 프레임에 누락 된 날짜 추가 (0) | 2020.09.04 |
PHP 날짜 시간 이후 경과 된 시간을 찾는 방법은 무엇입니까? (0) | 2020.09.04 |