- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个带有 Bootstrap 的面板页脚。我使用 css 中的 text-align 属性将其中的文本居中,并且我也将它垂直居中(总是在 css 中)。这是CSS代码:
.panel-footer{
padding: 0 15px;
height: 80px;
line-height: 80px;
text-align: center;
color: #777;
border: 1px solid;
border-color: #e7e7e7;
background-color: #FFFFFF;
}
这是html页面:
<div class="panel-footer">
Title and text - More text - Tel. +00 0000 00000 Fax. 0000 000 000 - <a href="privacy.php"><u>Privacy Policy</u></a> - <a href="cookie.php"><u>Cookie Policy</u></a>
</div>
当我调整页面大小时,文本会跳出。我已经检查了代码,问题是垂直对齐,并且是以下导致它的 css 代码:
line-height: 80px;
还有其他垂直对齐文本的方法吗?
最佳答案
发生这种情况是因为您将 div 的高度设置为 80px,请尝试使用其他单位。例如 height: 20%;
.panel-footer{
padding: 0 15px;
height: 20%;
line-height: 80px;
text-align: center;
color: #777;
border: 1px solid;
border-color: #e7e7e7;
background-color: #FFFFFF;
}
<div class="panel-footer">
Title and text - More text - Tel. +00 0000 00000 Fax. 0000 000 000 - <a href="privacy.php"><u>Privacy Policy</u></a> - <a href="cookie.php"><u>Cookie Policy</u></a>
</div>
关于html - Bootstrap, panel-footer with text align-center horizontally and vertically jump out 调整大小时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45091187/
鉴于下面的基本 HTML 结构(我无法更改),我知道我可以使用此 CSS 扩展主要内容 div: html, body { height: 100%; } body { display: fl
这应该类似于 iOS tableview 页脚,也可以在各种网站中看到(粘性页脚)。 我想实现以下目标: A 是具有可变行数的 RecyclerView。 当 A 小于屏幕(或父级)尺寸时,B(页脚)
我有一个 Bootstrap 面板,底部有两个按钮: {{ Form::open( array('route' => array('dogs.edit', $dog->id)
我是一名优秀的程序员,十分优秀!