好的,这就是它现在看起来的样子但是我想溢出去向右而不是向下。
这是CSS代码:
body{
position:relative;
margin:0px;
background-image:url('../images/background.png');
font-family: 'Open Sans', sans-serif;
}
#logo{
font-size:45px;
font-weight:bold;
}
#today_section{
position:relative;
margin-top:100px;
margin-left:auto;
margin-right:auto;
width:900px;
height:219px;
background-image:url("../images/slider_background.png");
/*overflow:hidden;*/
}
.movie{
position:relative;
margin-top:10px;
margin-left:15px;
width:134px;
height:199px;
}
滑块被称为" today_section"每部电影都有班级"电影"。
答案 0 :(得分:0)
尝试添加:
#today_section{
overflow:hidden;
}
.movie{
display:inline-block
}
答案 1 :(得分:0)
.movie{
float:left;
}
尝试添加此
答案 2 :(得分:0)
我将today_section的宽度增加到2000并添加了overflow:hidden到容器