Creating Wavy Shapes & Patterns In CSS

26 May 2023 Balmiki Mandal 0 MERN Full Stack

How to Create Wavy Shapes & Patterns in CSS

Creating wavy shapes and patterns in CSS can be a great way to add some visual interest to your web page. Whether you’re looking for something simple or complex, you can easily achieve it with a few lines of code. In this article, we’ll discuss how to create a variety of wavy shapes, from simple circles to intricate wave patterns, using only CSS.

Circular Shapes

A basic way to create a circular shape with CSS is to use the `border-radius` property. To create a full circle, simply set the `border-radius` value to `50%`. You can also add a `background-color` or `image` to give your circle a more interesting look. Here is an example of a simple circle CSS code:

.circle { 
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #ccc;
}

Wavy Line

A wavy line can easily be created using the `border-style` property. To create a continuous wavy line, set the `border-style` to `dashed`, then adjust the `border-width` and `border-color` to your desired specifications. Here is an example of a simple wavy line:

.waveLine {
  width: 400px;
  height: 50px;
  border-style: dashed;
  border-width: 2px;
  border-color: #000;
}

Wave Pattern

You can create more complex wave patterns using multiple curved borders. This can be accomplished by setting each side of the element (top, right, bottom, and left) with its own `border-radius`. Here is an example of a basic wave pattern:

.wavePattern {
  width: 300px;
  height: 120px;
  border-top-left-radius: 20%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 70%;
  border-bottom-left-radius: 30%;
  background-color: #ccc;
} 

By combining different values for the `border-radius` on each side, you can create many variations of wave patterns.

Final Thoughts

Creating wavy shapes with CSS is a great way to add some visual interest to your web page. With just a few lines of code, you can create interesting shapes and patterns that will make your page stand out. It’s important to remember, however, that not all browsers support all types of CSS shapes and patterns, so be sure to double check that your code is working correctly in all browsers before publishing your project.

BY: Balmiki Mandal

Related Blogs

Post Comments.

Login to Post a Comment

No comments yet, Be the first to comment.