我有这个div,我需要修复它,但是我不能使用固定的位置(当我按下按钮时,网站会向左移动,如果div被修复了, t会留在同一个地方)......我怎么能这样做?
#baar{
height: 56px;
width: 100%;
background: linear-gradient(top, #e3e3e3 0%, #f9f9f9 100%);
background: -moz-linear-gradient(top, #e3e3e3 0%, #f9f9f9 100%);
background: -webkit-linear-gradient(top, #e3e3e3 0%, #f9f9f9 100%);
background-image: -ms-linear-gradient(top left, #e3e3e3 0%, #f9f9f9 100%);
background-image: -o-linear-gradient(top left, #e3e3e3 0%, #f9f9f9 100%);
background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0, #f9f9f9), color-stop(1, #e3e3e3));
background-image: linear-gradient(to bottom right, #e3e3e3 0%, #f9f9f9 100%);
box-shadow: 0px 0px 9px rgba(0,0,0,0.15);
box-shadow: 0px 0px 9px rgba(0,0,0,0.15);
position: relative;
margin-top: 16px;
left: 0;
text-align: center;
}
我已经尝试过溢出:隐藏...... 感谢
答案 0 :(得分:0)
试试这个,
position: absolute;
并检查是否有效,也可以添加一个浮点参数。
在w3schools上查看样式表的这个文档/语法,如果你不时地忘记几件事情会很有帮助。 - http://www.w3schools.com/css/css_syntax.asp