回答編集履歴
2
追記
test
CHANGED
@@ -191,3 +191,5 @@
|
|
191
191
|
</html>
|
192
192
|
|
193
193
|
```
|
194
|
+
|
195
|
+

|
1
追記
test
CHANGED
@@ -89,3 +89,105 @@
|
|
89
89
|
</html>
|
90
90
|
|
91
91
|
```
|
92
|
+
|
93
|
+
追記
|
94
|
+
|
95
|
+
---
|
96
|
+
|
97
|
+
```HTML
|
98
|
+
|
99
|
+
<!DOCTYPE html>
|
100
|
+
|
101
|
+
<html>
|
102
|
+
|
103
|
+
<head>
|
104
|
+
|
105
|
+
<meta charset="UTF-8">
|
106
|
+
|
107
|
+
<title>タイトル</title>
|
108
|
+
|
109
|
+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
110
|
+
|
111
|
+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
|
112
|
+
|
113
|
+
<style type="text/css">
|
114
|
+
|
115
|
+
.table {
|
116
|
+
|
117
|
+
table-layout: fixed;
|
118
|
+
|
119
|
+
overflow-wrap: break-word;
|
120
|
+
|
121
|
+
word-wrap: break-word;
|
122
|
+
|
123
|
+
}
|
124
|
+
|
125
|
+
|
126
|
+
|
127
|
+
.table tr th:nth-child(1) {
|
128
|
+
|
129
|
+
width: 30%;
|
130
|
+
|
131
|
+
}
|
132
|
+
|
133
|
+
</style>
|
134
|
+
|
135
|
+
</head>
|
136
|
+
|
137
|
+
<body>
|
138
|
+
|
139
|
+
<div class="container">
|
140
|
+
|
141
|
+
<div class="row">
|
142
|
+
|
143
|
+
<table class="table">
|
144
|
+
|
145
|
+
<thead>
|
146
|
+
|
147
|
+
<tr>
|
148
|
+
|
149
|
+
<th>TR</th>
|
150
|
+
|
151
|
+
<th>TR</th>
|
152
|
+
|
153
|
+
</tr>
|
154
|
+
|
155
|
+
</thead>
|
156
|
+
|
157
|
+
<tbody>
|
158
|
+
|
159
|
+
<tr>
|
160
|
+
|
161
|
+
<td>TD1</td>
|
162
|
+
|
163
|
+
<td>アイディ</td>
|
164
|
+
|
165
|
+
</tr>
|
166
|
+
|
167
|
+
<tr>
|
168
|
+
|
169
|
+
<td>TD2</td>
|
170
|
+
|
171
|
+
<td>http://awawsawas.dwdasdsaddwadwdnaifjnekfrdnkjgbnfkdfnanfiergkvmseingvkrnbkfbksnvirbnkfb
|
172
|
+
|
173
|
+
kdjrnkjvnbrkbndrkbjnkrjbnkdnrjbnjnjrnrjnrjrjrrnrnnrjjrjrnrjnkgjrnkdnvjfnrfbkjnfkdjbnrkjdnfjknbkjdndjfkbnkdfjkdbnfkbndkfbnkdfnbjkfdnbkdnbkfnbkdjbfnkjbfdbnfkjnbkjfdnbjfkdnbfjdknbfjnbkjfdbnkdfnbkdnbjdkfbnkjnbkjdnkrbdnfkbndknbfjknbkdnbfknbkdjbndfknbkfnbjkfndkvmrkmglbnkdnbkfnkbnfknbdknbkfnbdbnfjkdnbdfknbknfdknbkfnbfkdjbnfdknbfdjnbfknbkdnbfkjbfnkfnkdnb
|
174
|
+
|
175
|
+
</td>
|
176
|
+
|
177
|
+
</tr>
|
178
|
+
|
179
|
+
</tbody>
|
180
|
+
|
181
|
+
</table>
|
182
|
+
|
183
|
+
</div>
|
184
|
+
|
185
|
+
</div>
|
186
|
+
|
187
|
+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
188
|
+
|
189
|
+
</body>
|
190
|
+
|
191
|
+
</html>
|
192
|
+
|
193
|
+
```
|