Как я могу центрировать ряд элементов, где я могу выбрать, какой элемент будет самым центром веб-страницы? Это означает, что все остальные элементы должны быть плавающими слева или справа от этого центрального элемента.
Я хочу, чтобы строка была центрирована на #itemMainPic
в этом примере того, с чем я работаю:
.row {
background: #f8f9fa;
margin-top: 20px;
}
.col {
border: solid 1px #6c757d;
padding: 10px;
}
.itemOtherPics {
display: flex;
flex-direction: column;
overflow: auto;
height: 50vh;
}
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet"/>
<div class="container">
<div class="row">
<div class="col-2 float-left itemOtherPics"><img class="py-3 img-fluid" src="https://place-hold.it/1200x800/e600ff" type="button" data-toggle="modal" data-target="#exampleModal" style="height:300px;width=auto;"><img class="py-3 img-fluid" src="https://place-hold.it/1200x800/e600ff" type="button"
data-toggle="modal" data-target="#exampleModal" style="height:300px;width=auto;"><img class="py-3 img-fluid" src="https://place-hold.it/1200x800/e600ff" type="button" data-toggle="modal" data-target="#exampleModal" style="height:300px;width=auto;"></div>
<div class="float-none" id="itemMainPic"><img class="pr-3 img-fluid" src="https://place-hold.it/1200x800/e600ff" type="button" data-toggle="modal" data-target="#exampleModal" style="height:300px;width=auto;"></div>
<div class="float-right">
<div class="card">
<div class="card-body">
<h5 class="card-title">Title</h5>
<h6 class="card-sbutitle">Subtitle</h6>
<p class="card-text">text</p>
</div>
</div>
</div>
</div>
</div>
https://jsfiddle.net/by091hqp/1/