当前位置:  开发笔记 > 编程语言 > 正文

Href无法在Chrome中运行,可以在IE中运行

如何解决《Href无法在Chrome中运行,可以在IE中运行》经验,为你挑选了1个好方法。

我有这个网站,我正在努力.我已经获得了一个模板,我正在编辑HTML以进行自定义.页面上有一个部分,其中有三个图标,其下方有"更多"按钮.我已将按钮设置为链接到其他网页,但它仅适用于IE - 而不是Chrome.此外,图标本身应该在您悬停时更改,这也是他们在IE中而不是在Chrome中执行的操作.

我有这个代码:

.intro3 {
  text-align: center;
  color: $(intro3.color);
}

.intro3 .row {
  width: 90%;
  margin: 0 auto;
  padding: 120px 0 120px 50px;
}

.images_author {
  font-size: 6em;
}

.images_author span {
  position: relative;
  display: inline-block;
  width: 160px;
  height: 160px;
  line-height: 160px;
  color: $(intro3.circle.right);
  border-width: 40px;
  border-style: solid;
  border-radius: 100%;
  border-top-color: $(intro3.circle.left);
  border-right-color: $(intro3.circle.right);
  border-bottom-color: $(intro3.circle.right);
  border-left-color: $(intro3.circle.left);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.authsx:hover .images_author span {
  color: $(background.color.all);
  border-style: double;
  border-top-color: $(intro3.circle.left);
  border-right-color: $(intro3.circle.left);
  border-bottom-color: $(intro3.circle.right);
  border-left-color: $(intro3.circle.right);
}

.intro3 .fourcol div.padd_25 {
  padding: 25px;
}

.intro3 .fourcol div strong {
  font: normal normal 22px  PT Serif,serif;
  line-height: 1.8em;
}

.intro3 .fourcol p a.more_aut {
  font-size: 12px;
  margin: 10px 0 10px 0;
  display: inline-block;
  padding: 10px 30px;
  background: transparent;
  color: $(intro3.color);
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid $(intro3.color);
  border-radius: 6px;
  opacity: 0.6;
}

哪个设置(执行操作的位置):

  

Explore

LinkedIn Profile

Connect via LinkedIn. See my skills, experience, and qualifications.

More

About Me

Learn more about me.

More

Samples of Work

See a small sample of my work.

More

我这里只有非常基本的技能,很多互联网调查都无法告诉我为什么浏览器存在差异.作为参考,这是网站.有人可以提供建议吗?我不知道从哪里开始.



1> 小智..:

里面#page-content有一个元素,类intro3有一个伪元素:after.伪元素覆盖您的链接.z-index如果你不需要它,可以降低它或删除它.

推荐阅读
oDavid_仔o_880
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有