Would it be possible to create a composite class that encompasses various other classes? In the Bootstrap menu, we observe multiple anchor tags with identical combinations of classes such as:
<a class="nav-item nav-link" asp-controller="Account" asp-action="Login">Login</a>
Can we modify this to something like:
<a class="consolidate-name" asp-controller="Account" asp-action="Login">Login</a>