गोलाकार कोने बनाने के लिए, CSS3 में सीमा-त्रिज्या गुण का उपयोग करें। गोल कोनों को बनाने के लिए कोड निम्नलिखित है -
उदाहरण
<!DOCTYPE html> <html> <head> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } div { display: inline-block; width: 200px; height: 200px; text-align: center; font-size: 30px; } .rounded { border-radius: 24px; border: 4px solid green; } .normal { border: 4px solid green; margin-left: 20px; } </style> </head> <body> <h1>CSS3 rounded corner example</h1> <div class="rounded">Rounded Corners</div> <div class="normal">Default corners</div> </body> </html>
आउटपुट
उपरोक्त कोड निम्न आउटपुट उत्पन्न करेगा -