質問するログイン新規登録

質問編集履歴

1

2019/07/24 13:39

投稿

kinisinai
kinisinai

スコア28

title CHANGED
File without changes
body CHANGED
@@ -67,4 +67,48 @@
67
67
  }
68
68
  });
69
69
 
70
+ ```
71
+
72
+ ```HTML5
73
+ <div class="table-responsive">
74
+
75
+ <table id="hoge_tb" class="table table-bordered table-hover"
76
+ style="width: 100%">
77
+ <thead>
78
+
79
+ <tr class="table-secondary text-nowrap">
80
+ <th colspan="2" class="text-center">名前</th>
81
+
82
+ </tr>
83
+
84
+ <tr class="text-nowrap">
85
+
86
+ <th></th>
87
+
88
+
89
+ <th>テスト姓</th>
90
+ <th>テスト名</th>
91
+
92
+
93
+
94
+
95
+
96
+ </tr>
97
+
98
+ </thead>
99
+ <tbody>
100
+
101
+ <tr class="text-nowrap">
102
+
103
+ <td>てすと</td>
104
+ <td>てすと</td>
105
+
106
+
107
+ </tr>
108
+
109
+ </tbody>
110
+ </table>
111
+
112
+ </div>
113
+
70
114
  ```