如何在iframe中打开链接时使背景颜色变为绿色?

时间:2016-05-21 03:32:46

标签: html css

i write the code of this image.i want to make background-color green when link is open in iframe.ifreame i present below the navigation bar

我可以使用css尝试使用:acvtive选择器,但不能使用iframe。还有另一种让它看起来像这样的方法吗?

     <style>
      a.lis:active {
          background-color: #4CAF50;
      }

      a.lis {
          color: white;
          font-size: 19px;
          text-align: center;
          font-weight: 10px;
          text-decoration: none;
          margin-bottom: 0px;
          float: left;
          disply: inline-block;
          height: 30px;
          background-color: #5F5F5F;
          padding: 14px 10px 10px 5px;
      }

      a.lis:hover {
          background-color: #4CAF50;
      }
  </style>
  <ul class="list">
      <li class="icolist">
          <img class="icohome" src="home.png" width="25px" height="25px" target="ifrm">
      </li>
      <li><a target="ifrm">Best places</a>
      </li>
      <li><a class="lis" href="http://localhost/signup.php" target="ifrm">Hotels</a>
      </li>
      <li><a class="lis" href="#" target="ifrm">Videos</a>
      </li>
      <li><a class="lis" href="#" target="ifrm">Best routes</a>
      </li>
  </ul>

1 个答案:

答案 0 :(得分:0)

我解决了我使用的这个问题:链接的焦点选择器,它运行良好。感谢所有给出答案的人