
- 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
How to create different shapes with CSS?
To create different shapes with CSS, the code is as follows −
Example
<!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>
Output
The above code will produce the following output −
- Related Questions & Answers
- How to create different dividers with CSS?
- How to create different device looks (smartphone, tablet and laptop) with CSS?
- Multiply arguments element-wise with different shapes in Numpy
- Subtract arguments element-wise with different shapes in Numpy
- Add arguments element-wise with different shapes in Numpy
- How to draw different shapes using the Python Turtle library?
- How to create tooltips with CSS?
- How to create arrows with CSS?
- What are the different shapes of galaxies?
- Python - Drawing different shapes on PyGame window
- How to create fading effect with CSS
- How to create image filters with CSS
- How to create Icon Bar with CSS?
- How to create a pagination with CSS?
- How to create fading buttons with CSS?
Advertisements