Create ButtonGroup with rounded corner

19 Dec 20221 minute to read

The ButtonGroup with rounded corner has round edges on both sided. To ButtonGroup with rounded corner, e-round-corner class is to be added to the target element.

<div class='e-btn-group e-round-corner'>
    @Html.EJS().Button("html").Content("HTML").Render()
    @Html.EJS().Button("css").Content("CSS").Render()
    @Html.EJS().Button("javacript").Content("Javascript").Render()
</div>
public ActionResult Index()
    {
            return View();
    }

NOTE

View Sample in GitHub.