Created
April 21, 2016 08:41
-
-
Save cheft/488d9f6c759157c1cdc0b118932e0428 to your computer and use it in GitHub Desktop.
[css片段]图片与多行文字垂直居中对齐
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="alertify-content"> | |
<i class="alertify-icon glyphicon glyphicon-remove-circle"></i> | |
上面标签可以是图片,也可以是图标,任意 | |
</div> | |
.alertify-content { | |
display: table; | |
} | |
.alertify-icon { | |
vertical-align: middle; | |
display: table-cell; | |
width: 32px; | |
font-size: 24px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment