我使用Chris Coyier 在 CSS-tricks 中建议的方法将一些内容(两种方式)集中在容器元素内。为了兼容性,我使用语义方法而不是:before
文章中使用的伪元素。由于某种原因,Firefox(在 v.19 for Mac 上测试)失败了,我不知道正确的修复方法是什么(而 Safari、Opera、IE9 和 Chrome 都以它们应该的方式工作)。
我可以检测浏览器并设置一些条件规则,但如果可能的话,我有兴趣在全球范围内解决这个问题。
如果您想检查不同的浏览器,这是我创建的修改过的小提琴的代码。
CSS:
.block {
text-align: center;
background: #c0c0c0;
margin: 20px 0;
height: 300px;
}
.content-before {
content:'';
display: inline-block;
height: 100%;
vertical-align: middle;
margin-right: -0.25em; /* Adjusts for spacing */
}
.centered {
display: inline-block;
vertical-align: middle;
padding: 10px;
background: #f5f5f5;
}
HTML:
<div>
<div class="block">
<span class="content-before"></span>
<div class="centered">
<h1>Some text</h1>
<p>But he stole up to us again, and suddenly clapping
his hand on my shoulder, said—"Did ye see anything
looking like men going towards that ship a while ago?"</p>
</div>
</div>
</div>