

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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>
- Related Questions & Answers
- How to add a colored border to a button with CSS?
- Add shadow effects to text with CSS
- Which element is used to add special style to the first letter of the text in a selector with CSS
- Which element is used to add special styles to the first line of the text in a selector with CSS
- How to output colored text to a Linux terminal?
- Set bottom-right corner border with CSS
- Set bottom-left corner border with CSS
- Set top-left corner border with CSS
- Set top-right corner border with CSS
- Add more than one shadow to a text with CSS
- Create blurred picture or text with CSS Filters
- How to add styling or css to your app using reactnative?
- Add space inside a form’s text field with CSS
- How to create blue or red colored boxplots in R using ggplot2?
- Text Decoration in CSS
Advertisements