Skip to content

Instantly share code, notes, and snippets.

@cheft
Created April 21, 2016 08:41
Show Gist options
  • Save cheft/488d9f6c759157c1cdc0b118932e0428 to your computer and use it in GitHub Desktop.
Save cheft/488d9f6c759157c1cdc0b118932e0428 to your computer and use it in GitHub Desktop.
[css片段]图片与多行文字垂直居中对齐
<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