回答編集履歴
1
コード編集
answer
CHANGED
@@ -3,10 +3,18 @@
|
|
3
3
|
一例として...
|
4
4
|
```
|
5
5
|
<style>
|
6
|
+
.row {
|
6
|
-
|
7
|
+
width: 100%;
|
7
|
-
|
8
|
+
display: flex;
|
9
|
+
}
|
10
|
+
#logo {
|
8
|
-
|
11
|
+
width: 150px;
|
12
|
+
}
|
13
|
+
.row form {
|
9
|
-
|
14
|
+
width: calc(100% - 150px);
|
15
|
+
}
|
10
|
-
.row form input {
|
16
|
+
.row form input {
|
17
|
+
width: 70%;
|
18
|
+
}
|
11
19
|
</style>
|
12
20
|
```
|