0

我正在尝试在主题上向下移动幻灯片,但无法识别 CSS 标签,当我键入以下 css 时,它会推送图像而不是实际的幻灯片位置:

.newcastle-carousel img {
margin-top: 100px;
}

希望你能帮忙。

4

2 回答 2

1

你很接近......将边距添加到父div,而不仅仅是img......

.newcastle-carousel-wrapper{
  margin-top: 100px;
}
于 2013-03-12T20:59:18.203 回答
1
.newcastle-carousel-wrapper {
    margin-top: 100px;
}
于 2013-03-12T20:59:19.007 回答