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 & washing ▾</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
Post a Comment