0
How to make a circle image using html?
Can you any body help me to make a circle image?
5 odpowiedzi
+ 6
HTML:
<img src='img.jpg' alt='' id='a'>
CSS:
#a {
border-radius: 50%;
}
+ 5
u need CSS...
img
{
border-radius:100%;
/*Height And Width of the image must be equal */
}
+ 1
u need CSS...
img
{
border-radius:100%;
/*Height And Width of the image must be equal */
}
Md.Nafis this code is not workings..
can you suggest another..
0
JFS your code is not working,help me to make a circle image,
do you know any another way?
- 1
Here’s something that’ll walk you through creating a circle with SVG: https://www.w3schools.com/graphics/svg_circle.asp