How To Create A Parallelogram Using HTML and CSS?


STEP 1: Add <div class="parallelogram"></div> into your HTML document inside <body> section.
STEP 2: Add this CSS code.


.parallelogram{
  width: 250px;
  height: 150px;
  background-color: black;
  transform: skew(-30deg);
 }

Output



The width: 250px and height: 150px give width and height to the object. The background-color: black; make the object's background color black to make it visible. Then, the transform: skew(-30deg); property skew the object in X-axis by -30degree. And the parallelogram is created using HTML and CSS.


Trending Posts

Build a Modern Gradient Calculator Using HTML, CSS, and JavaScript

What Are The Use of Function Keys F1 to F12 on The Keyboard?

Build a Simple Calculator Using HTML, CSS, and JavaScript 💻

🚀 Build a QR Code Generator Using HTML, CSS & JavaScript

10 AI Coding Tools That Actually Made Me a Worse Programmer (2025 Edition)

The Secret Formula to Grow as a Programmer

How Long Does It Take to Learn Programming?

Create Light & Dark Theme Toggle Using HTML, CSS & JavaScript

Why Bitcoin And Other CryptoCurrencies Are Ban/illegal In Most Countries?

Bridging the Language Divide: How Modern IT Professionals Can Make Their Work Make Sense