質問編集履歴
4
2枚目デスクトップの背景が混じっていたので、トリミングしました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -111,4 +111,4 @@
|
|
111
111
|
|
112
112
|
※追記:現在表示されている謎のスクリーンショットです。ある一定のサイズで下記のようにデザインが変わります。
|
113
113
|

|
114
|
-

|
3
スクリーンショットを追加しました
title
CHANGED
File without changes
|
body
CHANGED
@@ -107,4 +107,8 @@
|
|
107
107
|
.submit-btn{
|
108
108
|
padding-top:10px;
|
109
109
|
}
|
110
|
-
```
|
110
|
+
```
|
111
|
+
|
112
|
+
※追記:現在表示されている謎のスクリーンショットです。ある一定のサイズで下記のようにデザインが変わります。
|
113
|
+

|
114
|
+

|
2
<code>を使用しました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
|
11
11
|
※追記
|
12
12
|
以下ソースコードです。
|
13
|
-
|
13
|
+
```html5
|
14
14
|
<div class="formContents">
|
15
15
|
<form id="mainform">
|
16
16
|
<div class="itemBox">
|
@@ -62,9 +62,11 @@
|
|
62
62
|
</div>
|
63
63
|
</form>
|
64
64
|
</div>
|
65
|
+
```
|
65
66
|
|
66
67
|
|
67
68
|
こちらはCSSです。
|
69
|
+
```css3
|
68
70
|
.heading{
|
69
71
|
font-size: 24px;
|
70
72
|
font-weight: 400;
|
@@ -104,4 +106,5 @@
|
|
104
106
|
|
105
107
|
.submit-btn{
|
106
108
|
padding-top:10px;
|
107
|
-
}
|
109
|
+
}
|
110
|
+
```
|
1
ソースコードを追記しました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -6,4 +6,102 @@
|
|
6
6
|
|
7
7
|
原因はどこにあると考えられるのでしょうか?
|
8
8
|
|
9
|
-
よろしくお願いいたします。
|
9
|
+
よろしくお願いいたします。
|
10
|
+
|
11
|
+
※追記
|
12
|
+
以下ソースコードです。
|
13
|
+
|
14
|
+
<div class="formContents">
|
15
|
+
<form id="mainform">
|
16
|
+
<div class="itemBox">
|
17
|
+
<h3 class="heading">お支払い情報</h3>
|
18
|
+
<div class="flexContents">
|
19
|
+
<div class="cell -small -spacerRight nameField">
|
20
|
+
<label for="last_name">カード番号</label>
|
21
|
+
<input type="text" value="" name="cn" id="cn" class="a-textBox"/>
|
22
|
+
</div>
|
23
|
+
</div>
|
24
|
+
<div class="flexContents">
|
25
|
+
<div class="cell -small -spacerLeft nameField">
|
26
|
+
<label for="first_name">カード有効期限</label>
|
27
|
+
<input type="text" value="" name="ed_year" id="ed_year" class="a-textBox"/> / <input type="text" value="" name="ed_month" id="ed_month" class="a-textBox"/>
|
28
|
+
</div>
|
29
|
+
</div>
|
30
|
+
<div class="flexContents">
|
31
|
+
<div class="cell -small -spacerRight nameField">
|
32
|
+
<label for="kana_last_name">カード名義人(名)</label>
|
33
|
+
<input type="text" value="" name="fn" id="fn" class="a-textBox"/>
|
34
|
+
</div>
|
35
|
+
</div>
|
36
|
+
<div class="flexContents">
|
37
|
+
<div class="cell -small -spacerLeft nameField">
|
38
|
+
<label for="kana_first_name">カード名義人(性)</label>
|
39
|
+
<input type="text" value="" name="ln" id="ln" class="a-textBox"/>
|
40
|
+
</div>
|
41
|
+
</div>
|
42
|
+
<div class="flexContents">
|
43
|
+
<div class="cell -small -spacerRight nameField">
|
44
|
+
<label for="kana_last_name">e-mailアドレス</label>
|
45
|
+
<input type="email" value="" name="em" id="em" class="a-textBox"/>
|
46
|
+
</div>
|
47
|
+
</div>
|
48
|
+
<div class="flexContents">
|
49
|
+
<div class="cell -small -spacerRight nameField">
|
50
|
+
<label for="kana_last_name">電話番号</label>
|
51
|
+
<input type="tel" value="ハイフンなし" name="pn" id="pn" class="a-textBox"/>
|
52
|
+
</div>
|
53
|
+
</div>
|
54
|
+
|
55
|
+
<input id="tkn" name="tkn" type="hidden" value="">
|
56
|
+
<input id="aid" name="aid" type="hidden" value="115283">
|
57
|
+
<input id="rt" name="rt" type="hidden" value="1">
|
58
|
+
<input id="iid" name="iid" type="hidden" value="0003">
|
59
|
+
<div class="flexContents submit-btn">
|
60
|
+
<input type="button" class="submit c-btn" value="購入する" onclick="doPurchase()"/>
|
61
|
+
</div>
|
62
|
+
</div>
|
63
|
+
</form>
|
64
|
+
</div>
|
65
|
+
|
66
|
+
|
67
|
+
こちらはCSSです。
|
68
|
+
.heading{
|
69
|
+
font-size: 24px;
|
70
|
+
font-weight: 400;
|
71
|
+
color: #24387b;
|
72
|
+
margin: 0 0 16px;
|
73
|
+
line-height: 1;
|
74
|
+
}
|
75
|
+
|
76
|
+
.flexContents{
|
77
|
+
display: flex;
|
78
|
+
max-width: 800px;
|
79
|
+
}
|
80
|
+
|
81
|
+
.nameField{
|
82
|
+
display: flex;
|
83
|
+
align-items: center;
|
84
|
+
}
|
85
|
+
|
86
|
+
.itemBox label{
|
87
|
+
display: table-cell;
|
88
|
+
color: #333;
|
89
|
+
font-size: 16px;
|
90
|
+
padding: 0 8px 0 0;
|
91
|
+
width: 152px;
|
92
|
+
font-weight: normal;
|
93
|
+
margin: 15px 5px 5px 5px;
|
94
|
+
}
|
95
|
+
|
96
|
+
.a-textBox{
|
97
|
+
background-color: #fff;
|
98
|
+
display: table-cell;
|
99
|
+
max-width: 100%;
|
100
|
+
padding: 6px 8px;
|
101
|
+
box-sizing: border-box;
|
102
|
+
border-radius: 4px;
|
103
|
+
}
|
104
|
+
|
105
|
+
.submit-btn{
|
106
|
+
padding-top:10px;
|
107
|
+
}
|