2

我的网站有问题。我创建了一个可以打开聊天的按钮。但是这个按钮并不是在所有浏览器和屏幕监视器中都停留在正确的位置。由于浏览器缩放,按钮不会像我想要的那样停留。

这是我的页面:http ://www.assembleia.org.br/site/webtv/

聊天按钮必须紧跟在方框后面,比如这张照片:http: //imageshack.us/photo/my-images/20/cssfix.jpg/

但在其他浏览器中,按钮会左右移动。这是我的CSS:

<style>

* { /* trying to RESET CSS */
  margin: 0;
  padding: 0;
  list-style: none;
  vertical-align: baseline;
}

#tab /* the button CHAT */{
  min-width: 50px;
  min-height: 19px;
  max-width: 50px;
  max-height: 19px;
  position: absolute;
  right: 27%;
/*float: left;*/
  top: 350px;
  display: block;
  cursor: pointer;
  background-image: url('http://www.assembleia.org.br/site/wp-content/uploads/2013/01/buttonchat.png');
  color: white;
}

#panel /* the panel */ {
  min-height: 367px;
  position:absolute;
  left: 1355px;
  top: 171px;
  background-color: #D4D4D4;
  max-height: 367px;
  min-width: 0; /*new line*/
}

#panel .content /* for the chat */ {
  min-width: 100px;
  text-align: center;
  /*margin-right:300px;*/
  margin-right: auto;
  max-width: 100px;
}

#close /* for the little red X after opening the chat */ {
  position: absolute;
  left: 1758px;
  top: 168px;
  background-image: url('http://www.assembleia.org.br/site/wp-content/uploads/2013/01/buttonclose1.png');
  text-decoration: none;
}

#share /* for facebook sharing after opening the chat */ {
  position: absolute;
  left: 1656px;
  top: 540px;
  font-size: 10px;
  font-family: Verdana,sans-serif;
}

</style>

谢谢..

4

2 回答 2

1

用这个

#tab {
min-width: 50px;
min-height: 19px;
max-width: 50px;
max-height: 19px;
position: absolute;
right: 50px;
top: 350px;
display: block;
cursor: pointer;
background-image: url('http://www.assembleia.org.br/site/wp-content/uploads/2013/01/buttonchat.png');
color: white;
}
于 2013-01-16T06:29:31.760 回答
0

使用位置:相对;父包装器 div 上的属性,然后更改 #tab CSS,如下所示:

  • 添加位置:绝对;
  • 从上到下更改:50%;
  • 从右到右更改:25px;

这是使用 Firebug 测试的,应该会产生预期的效果。

于 2013-01-16T06:03:42.690 回答