回答編集履歴
1
修正
test
CHANGED
@@ -70,8 +70,6 @@
|
|
70
70
|
|
71
71
|
/* position: absolute; */
|
72
72
|
|
73
|
-
color: #f00;
|
74
|
-
|
75
73
|
background-color:rgb(10, 10, 10);
|
76
74
|
|
77
75
|
height: 60px;
|
@@ -83,3 +81,17 @@
|
|
83
81
|
}
|
84
82
|
|
85
83
|
```
|
84
|
+
|
85
|
+
---
|
86
|
+
|
87
|
+
もしくは以下のようなアプローチもあるかもしれません。
|
88
|
+
|
89
|
+
```CSS
|
90
|
+
|
91
|
+
.maincontent {
|
92
|
+
|
93
|
+
min-height: calc(100vh - 60px);
|
94
|
+
|
95
|
+
}
|
96
|
+
|
97
|
+
```
|