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

时间:2016-01-05 14:38:39

标签: javascript html css google-chrome

我有这个网站,我试图继续努力。我已经获得了一个模板,我正在编辑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;
}

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

  <div class='intro3'>
<div class='row'>
  <h2 class='title_s authors'> Explore </h2>
    <div class='fourcol authsx'>      
      <div class='images_author coll_1'>
       <span class='icon fa fa-linkedin'/>
      </div>
      <div class='padd_25'>
        <strong>LinkedIn Profile</strong>
      <p>Connect via LinkedIn. See my skills, experience, and qualifications.</p>
        <p><a class='more_aut' href='http://www.linkedin.com/in/amandabayless'><span>More</span></a></p>
      </div>
     </div>

    <div class='fourcol authsx'>
     <div class='images_author coll_2'>
       <span class='icon fa fa-user'/>
      </div>
      <div class='padd_25'>
        <strong>About Me</strong>
      <p>Learn more about me. </p>
        <p><a class='more_aut'>More</a></p>
      </div>
    </div>
    <div class='fourcol last authsx'>
     <div class='images_author coll_3'>
                 <span class='icon fa fa-paperclip'/>
      </div>
      <div class='padd_25'>
        <strong>Samples of Work</strong>
      <p>See a small sample of my work. </p>
        <p><a class='more_aut'>More</a></p>
      </div>
    </div>
</div>

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

1 个答案:

答案 0 :(得分:7)

#page-content内,有一个类intro3的元素,它有一个伪元素:after。伪元素覆盖您的链接。如果您不需要它,请将其删除z-index或删除它。