abbr tag is not working for my touchscreen
abbr[title]:after
{
   content: " (" attr(title) ")";
}
@media screen and (min-width: 1025px)
{
   abbr[title]
   {
      border-bottom: 1px dashed #ADADAD;
      cursor:help;
   }
   abbr[title]:after
   {
      content: "";
   }
}
