大家好,我似乎很难让我的 div 准确地到达我需要的地方。这是该网站的链接。
正如你所看到的,我的幻灯片应该在框架中,但现在我能够以形状或形式做到这一点。
这是我正在使用的样式表的链接。一些帮助将不胜感激,我一页一页地用谷歌搜索,似乎找不到任何解决方案,所以我可以去以前找到帮助的地方。
#slideshow {
position: relative;
left: auto;
right: auto;
top: 119px;}
This CSS looks horrible (width of #content
, left:auto; margin-top: auto
...)
My suggestion is to make a fresh start and get rid of all those autos.
一个快速的解决方法是添加
.ws_images{
margin-top: 122px;
}
这将解决你的问题:
#contentbox {
position: relative;
}
#content {
position: absolute;
left: 100px;
top: 100px;
}
个人喜好:
#wowslider-container1 {
border: none;
}
您是否尝试过删除“margin-top:auto;”?
#content {
height: 374px;
width: 524;
margin-right: auto;
margin-left: auto;
margin-top: auto;
}