作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想为我的卡路里计算器创建一个粘性/ float 底部页脚,事实是,它在桌面上运行良好,但在移动设备上运行不佳。任何想法可能是什么问题?
HTML:
<footer class="footer">
<div class="summary">
<table id="nodecor">
<tr>
<th>Total Calories: </th>
<th>Carbs: </th>
<th>Fat: </th>
<th>Protein:</th>
</tr>
<tr>
<td class="bigtext"><span id="total">0</span> G</td>
<td class="bigtext"><span id="totalCarbs">0</span> G</td>
<td class="bigtext"><span id="totalFats">0</span> G</td>
<td class="bigtext"><span id="totalProteins">0</span> G</td>
</tr>
</table>
</div>
</footer>
CSS:
.footer {
padding: 10px;
height:15%;
position: fixed;
width:100%;
bottom: 0;
left: 0;
right: 0;
}
这是 Codepen link因为它可能更容易可视化。
感谢任何帮助!
最佳答案
您遇到问题的原因似乎是您的 html 代码格式错误。为您在问题中提到的 html 代码尝试这种格式。
<footer class="footer">
<div class="summary">
<table id="nodecor">
<tr>
<th>Total Calories: </th>
<th>Carbs: </th>
<th>Fat: </th>
<th>Protein: </th>
</tr>
<tr>
<td class="bigtext"><span id="total">0</span> G</td>
<td class="bigtext"><span id="totalCarbs">0</span> G</td>
<td class="bigtext"><span id="totalFats">0</span> G</td>
<td class="bigtext"><span id="totalProteins">0</span> G</td>
</tr>
</table>
</div>
</footer>
关于html - 粘性页脚不适用于移动设备,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49667975/
我是一名优秀的程序员,十分优秀!