html – DIV垂直中心的CSS背景图片

前端之家收集整理的这篇文章主要介绍了html – DIV垂直中心的CSS背景图片前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个div,我需要使用CSS将一个小背景图像放入该DIV的垂直中心。

有人可以帮忙吗?

谢谢。

解决方法

垂直居中:
#con {
    background: url(image.jpg) no-repeat left center;
}

水平居中:

#con {
    background: url(image.jpg) no-repeat center top;
}
原文链接:https://www.f2er.com/html/232449.html

猜你在找的HTML相关文章