Search code examples
htmlcsscross-browserhrefinternet-explorer-11

a href tag is not working in internet explorer


I am creating a button using a href tag in my page which is working fine in chrome. but it is not at all working in internet explorer the code for the button is

 <td class='swMntTopMenu' style="text-align:right">
  <button style="background-color:rgb(255,213,32)">
     <a href ='list.php' style="text-decoration:none !important;">
       <div class="link"> Back  </div> 
     </a>
 </td>

and the code for the style that is been used is

.swMntTopMenu
            {
                background-color: #E2E4E5;
                /* float: center;*/
                width: 5%;
                margin-top: 2px;
                padding-bottom: 6px;
                border-bottom: solid 1px #d0ccc9;
            }

and

.link
            {
                color: #0E0202;
                text-decoration: none;
                background-color: none;
            }

can anyone please help me with this?


Solution

  • hope this will help

    <a href ='list.php' style="text-decoration:none !important;"><button style="background-color:rgb(255,213,32)">  <div class="link"> Back </div> </button></a>