I want to Add the half circle at the bottom of the myStyle class.Following is the code which gives me the outer border for the top of the class but i also need inner circle at the bottom . I think negative border is the concept we can use, but not sure how to use it.
Expected Result should be Like the following image:
But right now i am getting result like following:
{
<style>
#myStyle {
width: 88px;
height: 106px;
background: yellow;
border-top-left-radius: 140px 150%;
border-top-right-radius: 165px 147%;
}
</style>
<body ng-app="">
<p> Insert Some text in the Text Field </p>
<p> Enter The Text <input type="text" ng-model="name" placeholder="Enter the Name"> </p>
<h1> Hi {{name}}</h1>
<div class="myStyle" id="myStyle">
<h5 style="text-align:center">Ss</h5>
</div>
</body>
}