回答編集履歴

1

コード追記

2021/07/29 09:07

投稿

agumon
agumon

スコア271

test CHANGED
@@ -7,3 +7,53 @@
7
7
 
8
8
 
9
9
  https://teratail.com/questions/350353#reply-479989
10
+
11
+
12
+
13
+ ※追記
14
+
15
+
16
+
17
+ ```html
18
+
19
+ <div class="inputBlock">
20
+
21
+ <div class="title">商品名:</div>
22
+
23
+ <div class="input"><input type="text" size="21"></div>
24
+
25
+ </div>
26
+
27
+ <div class="inputBlock">
28
+
29
+ <div class="title">販売価格:</div>
30
+
31
+ <div class="input"><input type="text" size="21"></div>
32
+
33
+ </div>
34
+
35
+ ...
36
+
37
+ ```
38
+
39
+
40
+
41
+ ```CSS
42
+
43
+ .inputBlock {
44
+
45
+ width: 600px;
46
+
47
+ display: flex;
48
+
49
+ }
50
+
51
+
52
+
53
+ .title {
54
+
55
+ width: 200px;
56
+
57
+ }
58
+
59
+ ```