作者热门文章
- objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?
- iphone - 如何将 CGFontRef 转换为 UIFont?
- ios - 以编程方式关闭标记的信息窗口 google maps iOS
- ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"
如何垂直居中包裹在 <span>
中的文本? ? <span>
必须有 min-height
的 45px
.这是我的设想:
-------- -------
text
---> text
-------- -------
我试过了 vertical-align
以及此 article 中的方法.他们都没有工作
最佳答案
尝试使用 flexbox , 所有现代浏览器都支持它,带有 prefixes它也适用于 IE10。
span {
min-height: 100px;
display: inline-flex;
align-items: center;
border: 1px solid aqua;
}
<span>vertical center</span>
关于html - 如何在 <span> 中垂直居中文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37754621/
我是一名优秀的程序员,十分优秀!