I am working with a web template that I am uploading. Therefore, I define a table such as: - table class = "table with table-striped column with bootstrap-datatable datatable">
<thead> <tr> <th></th> <th></th> </tr></thead> <tbody> <tr> <td class="center" > @Html.LabelFor(model => model.AccountDefinition.ORG_NAME) </td> <td>@Html.DisplayFor(model => model.AccountDefinition.ORG_NAME)</td> </tr> <tr> <td class="center"> @Html.LabelFor(model => model.AccountDefinition.LOGIN_URI) </td>
I am looking for a template for the .center class, but I cannot find any other link to the .center except insidethis
div.center,p.center,img.center{ margin-left: auto !important; margin-right: auto !important; float:none !important; display: block; text-align:center; }
So I added
font-weight:bold
to the above css, so it looks like this: -
div.center,p.center,img.center{ margin-left: auto !important; margin-right: auto !important; float:none !important; display: block; text-align:center; font-weight:bold; }
But still, the font of the cell cell will not be in bold? Any idea on how to fix this? BR
source share