質問編集履歴
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -83,3 +83,87 @@
|
|
83
83
|
[こちらの記事](https://qiita.com/chocolamint/items/67d25933880404c93db0)
|
84
84
|
|
85
85
|
で書かれたことを実行したところ多少スクロールはできるようになりましたが、一番下まで(footerが見えるまで)スクロールできませんでした。
|
86
|
+
|
87
|
+
html
|
88
|
+
|
89
|
+
```
|
90
|
+
|
91
|
+
<body>
|
92
|
+
|
93
|
+
<div class="wrapper">
|
94
|
+
|
95
|
+
<div class="wrapper-inner">
|
96
|
+
|
97
|
+
<div class="container" style="max-width: 960px; margin: 0 auto;">
|
98
|
+
|
99
|
+
<%= yield %>
|
100
|
+
|
101
|
+
<footer>
|
102
|
+
|
103
|
+
<p style="text-align: center; color: white;">2021</p>
|
104
|
+
|
105
|
+
</footer>
|
106
|
+
|
107
|
+
</div>
|
108
|
+
|
109
|
+
</div>
|
110
|
+
|
111
|
+
</div>
|
112
|
+
|
113
|
+
</body>
|
114
|
+
|
115
|
+
```
|
116
|
+
|
117
|
+
css
|
118
|
+
|
119
|
+
```
|
120
|
+
|
121
|
+
@media screen and (max-width:480px){
|
122
|
+
|
123
|
+
.wrapper{
|
124
|
+
|
125
|
+
min-height: 100vh;
|
126
|
+
|
127
|
+
background: url("紫.jpg");
|
128
|
+
|
129
|
+
background-repeat: repeat-x;
|
130
|
+
|
131
|
+
background-size: 187px;
|
132
|
+
|
133
|
+
position: relative;
|
134
|
+
|
135
|
+
padding-bottom: 120px;
|
136
|
+
|
137
|
+
box-sizing: border-box;
|
138
|
+
|
139
|
+
}
|
140
|
+
|
141
|
+
footer{
|
142
|
+
|
143
|
+
background: url("紫.jpg");
|
144
|
+
|
145
|
+
position: absolute;
|
146
|
+
|
147
|
+
bottom: 0;
|
148
|
+
|
149
|
+
left: 0;
|
150
|
+
|
151
|
+
width: 100%;
|
152
|
+
|
153
|
+
}
|
154
|
+
|
155
|
+
.wrapper-inner{
|
156
|
+
|
157
|
+
min-height: 100vh;
|
158
|
+
|
159
|
+
overflow: auto;
|
160
|
+
|
161
|
+
-webkit-overflow-scrolling: touch;
|
162
|
+
|
163
|
+
}
|
164
|
+
|
165
|
+
}
|
166
|
+
|
167
|
+
|
168
|
+
|
169
|
+
```
|