다음은 CSS로 둥근 원형 이미지를 만드는 코드입니다 -
예시
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> img { border-radius: 50%; width: 300px; height: 300px; } </style> </head> <body> <h1>Rounded Images Example</h1> <img src="https://i.picsum.photos/id/271/400/400.jpg"> </body> </html>
출력
위의 코드는 다음과 같은 출력을 생성합니다 -