回答編集履歴

1

補足

2017/06/08 02:04

投稿

gin
gin

スコア2722

test CHANGED
@@ -1 +1,27 @@
1
1
  よくわかりませんが`<ul>`→`<ol>`ではダメなんですか?
2
+
3
+ ####補足
4
+
5
+ htmlはこんな感じですかね。
6
+
7
+ `<label>`の`display: list-item;`は削除。
8
+
9
+ ```html
10
+
11
+ <ol>
12
+
13
+ <li class="form-group required">
14
+
15
+ <label for="***" class="col col-md-3 control-label">**</label>
16
+
17
+ <div class="col col-md-9 required">
18
+
19
+ <input name="data[***][***]" aria-describedby="text-right" class="form-control" placeholder="***" maxlength="100" type="text" id="***" required="required"/>
20
+
21
+ </div>
22
+
23
+ </li>
24
+
25
+ </ol>
26
+
27
+ ```