Как сделать изображение кругом CSS
img{
clip-path: circle();
}
or
img{
border-radius: 50%;
}
Cool Beans
img{
clip-path: circle();
}
or
img{
border-radius: 50%;
}
img{
clip-path: circle();
}
img.rounded {
object-fit: cover;
border-radius: 50%;
height: 100px;
width: 100px;
}
<div class="MagicScroll" data-options="loop: rewind;"> <img src="example1.jpg" /> <img src="example2.jpg" /> ...</div>