CSS로 다양한 모양을 만들려면 코드는 다음과 같습니다. -
예시
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style> div { display: inline-block; margin: 20px; } .square { width: 100px; height: 100px; background: rgb(23, 153, 121); border: 3px solid darkblue; } .rectangle { width: 200px; height: 100px; background: rgb(255, 232, 21); border: 3px solid rgb(42, 0, 70); } .circle { width: 100px; height: 100px; background: rgb(0, 255, 13); border: 3px solid rgb(27, 0, 78); border-radius: 50%; } </style> </head> <body> <h1>Different Shapes in CSS example</h1> <div class="square"></div> <div class="rectangle"></div> <div class="circle"></div> </body> </html>
출력
위의 코드는 다음과 같은 출력을 생성합니다 -