I just want to know if its possible to make a wavy line from one element to another element that they looks connected because of the line? I wanted to look like this: Pls check the image here wavy line
The element in html will be this:
<style>
/** CSS style for the line here **/
</style>
<div class="row">
<div class="col-md-4"><img src="circle img"></div>
<div class="col-md-4"><img src="circle img"></div>
<div class="col-md-4"><img src="circle img"></div>
</div>
Here is a simple approach to do so in CSS:
I had to use HTML tables so that I could fit different Divs in same line. Using a table you can rotate the curved line and add it in any angle according to your needs. Using table saves you from very large and complex css styling.