我正在为轮播上的图像开发网页。如何在 DIV 中向下移动图像,甚至垂直居中?
这是我的 CSS 代码:
.carousel .item {
height: 900px;
background-color: #777;
}
.carousel-inner > .item > img {
display: block;
margin-left: auto;
margin-right: auto
}
以下是相关网页的 URL,以显示图片太高: http: //www.canninginc.co.nz/canluciddream/screenshots.html
编辑
好的,我通过更改以下内容来编辑代码:
margin-top: 50px;
我仍然在 div 中降低图像。我可以增加上边距,但这会留下白色背景。将图像移低一点的最佳方法是什么?