0

当我缩小时它向左移动,当我放大时它向右移动这是我的代码:

.google {
position:absolute;
display:block;
right:200px;
width:728px;
top:90px;
border-left: 1px solid black;
}

我该如何解决?谢谢!

4

1 回答 1

0

嘿,现在像这样给身体 min-width

body{
min-width:1000px;
}

我看到你的布局我发现一些错误在你的样式表中添加到这个 css 并删除了搜索表单的一些错误

如果你需要

.onethousand_wrap {
    height: 30px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    width: 1000px;
}
于 2012-08-13T04:41:27.407 回答