Вот пример для центрирования изображения в элементе класса .icon
, установив display на flex, выровняв и выровняв все по центру.Я добавил 4 строки кода в верхнюю часть селектора .icon
в CSS.
.icon {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 50px;
height: 50px;
border-radius: 50%;
background-color: lightseagreen;
}
.img {
width: 25px;
height: auto;
filter: invert(100%);
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- jQuery -->
<script src="./node_modules/jquery/dist/jquery.js"></script>
<!-- Bootstrap -->
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.css">
<title>Document</title>
</head>
<body>
<div class="container mt-4">
<h1 class="mb-1">Hi Stackoverflow</h1>
<p>The item below is div with display flex and some styles to make it round and look pretty. <br> The image inside has margin-auto. Why does image <b>Not</b> center on chrome?. pls help</p>
<div class="d-flex">
<div class="icon mr-2 d-flex">
<img src="https://img.icons8.com/ios/420/discord-logo.png" alt="" class="img m-auto">
</div>
</div>
</div>
</body>
</html>
Надеюсь, это поможет!Хорошего дня:)