1
position: absolute
なしで擬似要素の高さ全体を設定できますか?擬似要素の高さとその内容の垂直方向の配置
もしそうでなければ、position: absolute
でコンテンツを擬似要素の中心に置くことはできますか? position: absolute
http://codepen.io/anon/pen/bWELGv
HTML
<div class="fusion-layout-column">
<div class="fusion-column-wrapper">
<p>Lorem ipsum</p>
</div>
</div>
SCSS
を使用してまずCodepen position: absolute
http://codepen.io/anon/pen/gWPoVx
ことなく、第2の試み210
.fusion-layout-column { .fusion-column-wrapper { background: #fff; display: flex; align-items: center; overflow: hidden; padding-right: 1em; &:before { content: 'G'; background: #ddd; display: inline-block; padding: 2em 1em; margin-right: 1em; height: 100%; } } }
私は最近のブラウザでは、この作業をするためにただのハックを使用して良いよ:)