在DIV垂直中心的CSS背景图象

时间:2011-04-15 11:45:41

标签: html css

我有一个div,我需要使用CSS将一个小背景图像放入该DIV的垂直中心。

有人可以帮忙吗?

感谢。

2 个答案:

答案 0 :(得分:42)

垂直居中:

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

横向居中:

#con {
    background: url(image.jpg) no-repeat center top;
}

答案 1 :(得分:9)

#somediv {
background: url (image.jpg) no-repeat 50% 50%;
}

50%水平和垂直居中......或者你可以使用center center