0

Instead of inserting a shape.png, I want to create a custom shape in Dreamweaver. Can I create a shape using code? Please see the image attached.

Custom Shape

jbutler483
  • 24,074
  • 9
  • 92
  • 145
Design
  • 133
  • 1
  • 2
  • 11

1 Answers1

1

You can do it using CSS. You can Watch Many SHAPES HERE...

When You need a Curvy Borders (As shown In the Shape.png ) Use

Border-radius:10px
//Or other properties are there!

Hope So You Know Css and its properties.

I have simple program for simple curve ...

Css file:

.box{
  width:500px; height:100px;  
  border:solid 5px #000;
  border-color:#000 transparent transparent transparent;
  border-radius: 50%/100px 100px 0 0;
}

Html file:

<div class="box"></div>

Output:

enter image description here

You can make many Shapes using CSS...

Rakshit Shah
  • 438
  • 4
  • 13