2017-11-23 12 views
0

テーブルのスタイルを修正しようとしています。このケースでは、テキストでは1行しか使用されません。このために、私が使用したい:すべてのテーブルのブートストラップでのテキストの整列を変更する4 table-thead

white-space: nowrap; 

.table-font-size { 
 
    font-size: 13px; 
 
    white-space: nowrap; 
 
}
<table class="table table-hover table-sm table-responsive table-bordered table-font-size"> 
 
    <thead class="thead-default"> 
 
    <tr> 
 
     <th class="thead-nowrap" th:text="#{large.text1}">Large text 1</th> 
 
     <th class="thead-nowrap" th:text="#{large.text2}">Large text 2</th> 
 
     <th class="thead-nowrap" th:text="#{large.text3}">Large text 2</th> 
 
    </tr> 
 
    </thead> 
 
</table>

作品が、私はそれを望んでいません。

提案がありますか?

おかげ

+0

、私はそれが問題 – Sankar

+0

右かもしれないと思う、でしたtypo !!!、thanks – davisoski

答えて

1

はこれを試してください:あなたは、あなたのスタイルでクラス名 `.table-THEAD-nowrap`後に括弧を逃した

.table .thead-nowrap{ 
     white-space: nowrap; 
    } 
+0

これは動作しません。あなたは括弧を欠いています。 – Sankar

+0

作品は、あなたの提案に括弧を追加しました。ありがとう – davisoski

関連する問題