Ändern die Zellen der Tabelle schriftart Fett

Ich arbeite mit einem web-Vorlage, die ich herunterladen. So definiere ich eine Tabelle, wie z.B.:-
table class="table table-striped table-grenzt 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>

Suche ich die Vorlage für .center Klasse, aber ich kann nicht finden, einen anderen Bezug zu .center mit Ausnahme insidethis

div.center,p.center,img.center{
margin-left: auto !important;
margin-right: auto !important;
float:none !important;
display: block;
text-align:center;

}

Also ich habe

font-weight:bold

den über css so sieht es aus:-

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;

}

Aber noch die Zellen der Tabelle wird die schriftart nicht Fett? Jede Vorstellung, wie man es beheben?
BR

überprüfen Sie Ihre schriftart oder fügen body{font-family:arial;}

InformationsquelleAutor john Gu | 2013-07-08

Schreibe einen Kommentar