質問編集履歴
3
mailformpro.cssの追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -183,4 +183,9 @@
|
|
183
183
|
}
|
184
184
|
}
|
185
185
|
|
186
|
-
```
|
186
|
+
```
|
187
|
+
|
188
|
+
------- 追記 -------
|
189
|
+
|
190
|
+
formについてはメールフォームプロというフリーのCGIを使用しております。
|
191
|
+
CSS / mailformpro.css
|
2
divの削除
title
CHANGED
File without changes
|
body
CHANGED
@@ -33,7 +33,7 @@
|
|
33
33
|
<option value="その他">その他</option></select></td></tr>
|
34
34
|
|
35
35
|
<tr><th>お問い合わせ内容</th><td><textarea name="お問い合わせ内容" placeholder="お問い合わせ内容を入力してください"></textarea></td></tr>
|
36
|
-
<tr><th colspan="2"><div class="text-center"><button type="submit">送信する</button></
|
36
|
+
<tr><th colspan="2"><div class="text-center"><button type="submit">送信する</button></th></tr>
|
37
37
|
</table>
|
38
38
|
|
39
39
|
</form>
|
1
form内tableタグのtrを追記 / table内にボタンを配置
title
CHANGED
File without changes
|
body
CHANGED
@@ -32,12 +32,10 @@
|
|
32
32
|
<option value="test3">test3</option>
|
33
33
|
<option value="その他">その他</option></select></td></tr>
|
34
34
|
|
35
|
-
<th>お問い合わせ内容</th>
|
36
|
-
|
35
|
+
<tr><th>お問い合わせ内容</th><td><textarea name="お問い合わせ内容" placeholder="お問い合わせ内容を入力してください"></textarea></td></tr>
|
36
|
+
<tr><th colspan="2"><div class="text-center"><button type="submit">送信する</button></div></th></tr>
|
37
37
|
</table>
|
38
|
-
|
38
|
+
|
39
|
-
<th colspan="2"><div class="text-center"><button type="submit">送信する</button></div></th>
|
40
|
-
</tr>
|
41
39
|
</form>
|
42
40
|
```
|
43
41
|
|