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.
Asked
Active
Viewed 3,892 times
1 Answers
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:
You can make many Shapes using CSS...

Rakshit Shah
- 438
- 4
- 13