teratail header banner
teratail header banner
質問するログイン新規登録

回答編集履歴

1

コード編集

2020/07/28 02:59

投稿

wing283
wing283

スコア123

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