2016-11-07 2 views
0

css:Cursor Zeiger nicht auf Chrom arbeiten, aber die Arbeit an Safari und Firefox

  .load_more{ 
       width:100%; 
       height: 44px; 
       color: #fff; 
       background-color: #5dc7d0; 
       border:none; 
       border-radius: 5px; 
       font-family: $base-font; 
       font-size: 18px; 
       margin-top: 22px; 
       cursor: pointer 
      } 
+1

Willkommen bei Stack-Überlauf! Bitte sehen Sie ** [fragen] ** und ** [mcve] ** – Tushar

+1

Es funktioniert wie erwartet. Überprüfen Sie dies [** JSFIDDLE **] (https://jsfiddle.net/b1uyt9tu/2/). Wenn möglich, teilen Sie bitte Ihren HTML-Code – brk

Antwort

0

adaequat Ihren Code. Sie können alle Browser

.load_more{ 
 
       width:100%; 
 
       height: 44px; 
 
       color: #fff; 
 
       background-color: #5dc7d0; 
 
       border:none; 
 
       border-radius: 5px; 
 
       font-family: $base-font; 
 
       font-size: 18px; 
 
       margin-top: 22px; 
 
       cursor: pointer 
 
      }
<div class="load_more"> 
 
    cursor pointer Div Here Mouser Hover 
 
</div>

-1

ur-Code wird Testen Sie arbeiten gut könnte es eine andere CSS überschreiben ur CSS sein, u elemnt überprüfen sollte und dass der Check, auch unter Code überprüfen und sehen, ob es funktioniert für u

.load_more{ 
 
    width:100%; 
 
    height: 44px; 
 
    color: #fff; 
 
    background-color: #5dc7d0; 
 
    border:none; 
 
    border-radius: 5px; 
 
    font-family: $base-font; 
 
    font-size: 18px; 
 
    margin-top: 22px; 
 
} 
 
.load_more, .load_more a{ 
 
    cursor: pointer!important; 
 
}
<div class="load_more"> 
 
    im having some <a href="#">link</a> here 
 
</div>

Verwandte Themen