CSS多行文本居中实现

来源:互联网 发布:现在淘宝开店卖什么好 编辑:程序博客网 时间:2024/05/11 15:39

CSS提供了单行文本居中的属性line-height,但是没有相应的多行文本居中的方法。其实可以通过以下方法来实现:

<!DOCTYPE html><html><head><meta charset="utf-8"><title>鬼眼邪神</title><meta name="keywords" content="鬼眼邪神的博客"><meta name="author" content="鬼眼邪神"><style>.multi_line {width: 300px;height: 200px;line-height:200px;border:1px solid rgb(0, 0, 0);}.multi_line span{display:inline-block;vertical-align: middle;line-height: 1.2em;}</style></head><body><p class="multi_line"><span>鬼眼邪神的博客:如果你每天比别人慢半步,一年后就是182.5步,十年后就是十万八千里!</span></p></body></html>


0 0
原创粉丝点击