text-align : center;를 사용하지 않고 콘텐츠를 가운데에 배치하려면 어떻게해야합니까? 내 코드는 다음과 같습니다. 아래 코드는 콘텐츠를 중앙에 배치하지 않습니다. 시간 내 주셔서 감사합니다. 텍스트 정렬을 사용하지 않고 콘텐츠를 가운데 맞추는 방법 : center
.feat_wrapper{
width:20%;
margin:0 auto;
}
<div class="feat_wrapper">
<div class="product_image">
<img src="landing_product.png" alt="sweater">
</div>
<div class="content">
CITY SCAPE <br>SHIRTS
</div>
</div>
<div class="feat_wrapper">
<div class="product_image">
<img src="landing_product.png" alt="sweater">
</div>
<div class="content">
CITY SCAPE <br>SHIRTS
</div>
</div>
.feat_wrapper{
margin-left:auto;
margin-right: auto;
}
이해야 커버에 대한 옵션 [CSS에서 중심으로 : 완전한 가이드]의 모든 (https : //로 css-tricks.com/centering-css-complete-guide/) –