質問編集履歴

1

追記

2018/08/27 07:22

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -73,3 +73,107 @@
73
73
  view-point 1000 ぐらいでみれば1要素 50px ぐらい幅があれば十分はいるはずなのに
74
74
 
75
75
  一部の input が 100px ぐらいとってしまってうまく均等にならずに困っています
76
+
77
+
78
+
79
+ 追記:
80
+
81
+
82
+
83
+ もう少し正確なHTMLソースです
84
+
85
+
86
+
87
+ ```
88
+
89
+ <html>
90
+
91
+ <head>
92
+
93
+ <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
94
+
95
+ </head>
96
+
97
+ <body>
98
+
99
+ <div class="navbar"></div>
100
+
101
+ <div class="container-fluid">
102
+
103
+
104
+
105
+ <form>
106
+
107
+ <div class="form-row">
108
+
109
+ <div class="form-group col">
110
+
111
+ <input type="select" class="form-control" placeholder="item name">
112
+
113
+ </div>
114
+
115
+ <div class="input-group col">
116
+
117
+ <input type="text" class="form-control" placeholder="1.23456">
118
+
119
+ <input type="text" class="form-control" placeholder="9.87654">
120
+
121
+ <button type="button input-group-append" class="form-control">○</button>
122
+
123
+ </div>
124
+
125
+ <div class="form-group col">
126
+
127
+ <input type="text" class="form-control" placeholder="10">
128
+
129
+ </div>
130
+
131
+ <div class="input-group col">
132
+
133
+ <input type="text" class="form-control" placeholder="2018-08-15 00:00">
134
+
135
+ <span class="form-text">〜</span>
136
+
137
+ <input type="text" class="form-control" placeholder="2018-08-15 23:59">
138
+
139
+ <button type="button input-group-append" class="form-control">○</button>
140
+
141
+ </div>
142
+
143
+ <div class="input-group col">
144
+
145
+ <input type="checkbox" class="form-control">
146
+
147
+ <input type="text" class="form-control" placeholder="00:00">
148
+
149
+ <span class="form-text">〜</span>
150
+
151
+ <input type="text" class="form-control" placeholder="23:59">
152
+
153
+ <button type="button input-group-append" class="form-control">○</button>
154
+
155
+ </div>
156
+
157
+ <div class="form-group col">
158
+
159
+ <button type="button input-group-append" class="form-control">○</button>
160
+
161
+ <button type="button input-group-append" class="form-control">○</button>
162
+
163
+ </div>
164
+
165
+ </div>
166
+
167
+ </form>
168
+
169
+ </div>
170
+
171
+ </body>
172
+
173
+ </html>
174
+
175
+ ```
176
+
177
+ 一部部品省略してますがこれでネストした内側の入力幅がそろってほしい(欲をいえば桁数分ぎりぎりの長さになってほしい)
178
+
179
+ あと1文字のボタンとかはほぼ正方形ぐらいのサイズにまで縮んでほしい…