样式为按钮的链接因绝对或相对定位而失败 *

发布于 2024-12-02 13:17:20 字数 1512 浏览 0 评论 0原文

在 web_application 中,当用户单击“添加”和“删除”按钮时,IE 9 可以工作,但 Safari 5.1 无法工作。

关于添加/删除按钮:

我注意到在 Safari 中,只有当光标放在按钮的顶部时,按钮才会响应...我注意到这与它在正常布局中的定位量有关。

当然,当我删除定位时它就起作用了。接下来我尝试从相对定位切换到绝对定位,但奇怪的是遇到了同样的问题。

解决这个问题的方法是什么,我需要定位元素,但我也需要它工作。我有下面的绝对定位。

  <form id="f3" method="post">
    <fieldset>
      <input class="te3" type="text" name="f3a" id="f3aa" maxlength="30"/>
      <span id="f3a">title:</span>
      <br>
      <input class="te3" type="text" name="f3b" id="f3bb" maxlength="2048"/>
      <span id="f3b">url:</span>
      <a id="f3c" class='but' href="javascript:void(0)">Add</a>
      <a id="f3d" class='but' href="javascript:void(0)">Delete</a>
    </fieldset>
  </form>

.but
  {
  margin-top:5px;
  font-family:"Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif;
  text-decoration:none;
  font-size:14px!important;
  line-height:16px;
  padding:2px 2px;
  cursor:pointer;
  border:1px solid #bbb;
  color:#464646;
  outline:none;
  text-decoration:none;
  background:#f2f2f2 url(white-grad_1.png) repeat-x scroll left top;
  }
.but:hover
  {
  text-decoration:none;
  color:#000;
  border-color:#666;
  }
.but:active
  {
  text-decoration:none;
  background:#eee url(white-grad-active_1.png) repeat-x scroll left top;
  }


#f3c
  {
  position:absolute;
  bottom:-3px;
  left:262px;
  }
#f3d
  {  
  position:absolute;
  bottom:-3px;
  left:300px;
  }

At web_application, IE 9 works but Safari 5.1 does not work when the user clicks on the Add and Delete Buttons.

Regarding the add/delete buttons:

I notice that in Safari the button is only responsive when the cursor is placed on the top part of the button...I noticed this was about the amount it was positioned from it's normal layout.

Of course when I removed the positioning it worked. Next I tried switching from relative to absolute positioning but oddly enough had the same issue.

What is a fix for this, I need to position element but I need it to work as well. I hav the absolue positioning below.

  <form id="f3" method="post">
    <fieldset>
      <input class="te3" type="text" name="f3a" id="f3aa" maxlength="30"/>
      <span id="f3a">title:</span>
      <br>
      <input class="te3" type="text" name="f3b" id="f3bb" maxlength="2048"/>
      <span id="f3b">url:</span>
      <a id="f3c" class='but' href="javascript:void(0)">Add</a>
      <a id="f3d" class='but' href="javascript:void(0)">Delete</a>
    </fieldset>
  </form>

.but
  {
  margin-top:5px;
  font-family:"Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif;
  text-decoration:none;
  font-size:14px!important;
  line-height:16px;
  padding:2px 2px;
  cursor:pointer;
  border:1px solid #bbb;
  color:#464646;
  outline:none;
  text-decoration:none;
  background:#f2f2f2 url(white-grad_1.png) repeat-x scroll left top;
  }
.but:hover
  {
  text-decoration:none;
  color:#000;
  border-color:#666;
  }
.but:active
  {
  text-decoration:none;
  background:#eee url(white-grad-active_1.png) repeat-x scroll left top;
  }


#f3c
  {
  position:absolute;
  bottom:-3px;
  left:262px;
  }
#f3d
  {  
  position:absolute;
  bottom:-3px;
  left:300px;
  }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哥,最终变帅啦 2024-12-09 13:17:20

无论出于何种原因,Safari 处理 z 索引的方式与 IE 不同。有一个隐藏的 div 阻止了我的链接的一部分。我应该用更直观的方式来思考,而不是想知道代码出了什么问题……并且让我的 div 更整洁。阻塞 div 不需要在那里。

只需将按钮上的 z-index 设置为 30 即可解决该问题。

for whatever reason, Safari handles z-indexing differently then IE. There was a hidden div blocking part of my link. I should have thought in more visual terms instead of wondering what was wrong with the code...that and keep my divs neater. The blocking div did not need to be there.

Simply setting z-index to 30 on my button fixed the issue.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文