大家好,我似乎很难让我的div准确到达我需要的地方。这是website的链接。
正如你所看到我的幻灯片应该在框架中,但现在我可以做到这样的形状或形式。
这是我正在使用的the link to the style sheet。 一些帮助将非常感激,我已经在页面上搜索,似乎无法找到任何解决方案,所以我可以到我之前找到帮助的地方。
答案 0 :(得分:0)
#slideshow {
position: relative;
left: auto;
right: auto;
top: 119px;}
这个CSS看起来很糟糕(宽度为#content
,left:auto; margin-top: auto
...)
我的建议是重新开始并摆脱所有这些汽车。
答案 1 :(得分:0)
这将解决你的痛苦:
#contentbox {
position: relative;
}
#content {
position: absolute;
left: 100px;
top: 100px;
}
个人偏好:
#wowslider-container1 {
border: none;
}
答案 2 :(得分:0)
您是否尝试删除“margin-top:auto;”?
#content {
height: 374px;
width: 524;
margin-right: auto;
margin-left: auto;
margin-top: auto;
}
答案 3 :(得分:0)
快速解决方法是添加
.ws_images{
margin-top: 122px;
}