Tag css rounded corners bottom only

CSS Rounded Corners

CSS Rounded Corners With the CSS border-radius property, you can give any element “rounded corners”. Example #rcorners1 {   border-radius: 25px;   background: #73AD21;   padding: 20px;   width: 200px;   height: 150px; } #rcorners2 {   border-radius: 25px;   border: 2px solid #73AD21;   padding: 20px;   width:…