I'm doing a project where I'm using border radius
to make a vertical menu.
I would like the Menu to have the radius border straight, in this rounded way:
Andit'scurrentlygettingthisway:
.teste{
height:12%;
width:65%;
background-color: rgb(56, 66, 65);
opacity:0.5;
position:absolute;
margin-left:30%;
border: 2px solid red;
border-bottom-left-radius: 250px 170px;
}
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Menu Vertical</title>
</head>
<body>
<div id="teste" class="teste"> </div>
</body>
</html>