Answers for "how to show image in circle shape in html"

CSS
2

how to make image a circle css

img{
	clip-path: circle();
}

or

img{
	border-radius: 50%;
}
Posted by: Guest on September-21-2021
0

rounded scrolling images

<div class="MagicScroll" data-options="loop: rewind;">    <img src="example1.jpg" />    <img src="example2.jpg" />    ...</div>
Posted by: Guest on May-20-2020

Browse Popular Code Answers by Language