Add special colored corner to body or text in CSS

CSS3 Rounded corners are used to add special colored corner to body or text by using the border-radius property.

Example

<html>
  <head>
   <style>
     #rcorner {
       border-radius: 25px;
       background: #8AC007;
       padding: 20px;
       width: 200px;
       height: 150px;
     }
   </style>
  </head>
  <body>
   <p id="rcorner">Rounded corners!</p>
  </body>
</html>
Updated on: 2020-03-16T07:35:44+05:30

498 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements