CSS cursor property isn't working -


i'm trying set cursor tags <a> when @ website property isn't showing

css

 {   color: #333333;   /* color: #787878; */   text-decoration: none;   cursor: pointer  } 

on website

 {   color: #333333;   /* color: #787878; */   text-decoration: none;  } 

if wanna give website is: backlabel.com

the issue link isn't link @ all.

the html is:

<a data-toggle="collapse" data-target="#demo">care &amp; washing&nbsp;▾</a> 

if "link" doesn't have href it's not link, it's treated as, essentially, span.

since using "toggle" add

a[data-toggle] {     cursor: pointer; } 

Comments

Popular posts from this blog

sequelize.js - Sequelize group by with association includes id -

android - Robolectric "INTERNET permission is required" -

java - Android raising EPERM (Operation not permitted) when attempting to send UDP packet after network connection -