回答編集履歴

1

追記

2017/04/11 14:49

投稿

s8_chu
s8_chu

スコア14731

test CHANGED
@@ -107,3 +107,117 @@
107
107
  </html>
108
108
 
109
109
  ```
110
+
111
+ #**追記**
112
+
113
+ ```HTML
114
+
115
+ <!DOCTYPE html>
116
+
117
+ <html lang="ja">
118
+
119
+ <head>
120
+
121
+ <meta charset="utf-8">
122
+
123
+ <title>タイトル</title>
124
+
125
+ <style type="text/css">
126
+
127
+ * {
128
+
129
+ margin: 0;
130
+
131
+ padding: 0;
132
+
133
+ }
134
+
135
+
136
+
137
+ .line {
138
+
139
+ width: 100%;
140
+
141
+ text-align: center;
142
+
143
+ }
144
+
145
+
146
+
147
+ .btn {
148
+
149
+ float: right;
150
+
151
+ margin-right: 0;
152
+
153
+ }
154
+
155
+
156
+
157
+ .btn::after {
158
+
159
+ content: " ";
160
+
161
+ display: block;
162
+
163
+ clear: both;
164
+
165
+ }
166
+
167
+
168
+
169
+ .form, .btn {
170
+
171
+ display: inline-block;
172
+
173
+ }
174
+
175
+
176
+
177
+ .text1 {
178
+
179
+ vertical-align: middle;
180
+
181
+ }
182
+
183
+ </style>
184
+
185
+ </head>
186
+
187
+ <body>
188
+
189
+ <div class="line">
190
+
191
+ <div class="form">
192
+
193
+ <form method="get" action="hoge.php">
194
+
195
+ <label>
196
+
197
+ <input type="text" name="speak" id="input-text">
198
+
199
+ </label>
200
+
201
+ <label>
202
+
203
+ <input type="submit" value="送信" id="submit_button">
204
+
205
+ </label>
206
+
207
+ </form>
208
+
209
+ </div>
210
+
211
+ <div class="btn">
212
+
213
+ <span class="text1">◎</span>
214
+
215
+ </div>
216
+
217
+ </div>
218
+
219
+ </body>
220
+
221
+ </html>
222
+
223
+ ```