Answers for "abbr tag is not working for my touchscreen"

0

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: "";
   }
}
Posted by: Guest on July-04-2021

Code answers related to "abbr tag is not working for my touchscreen"

Browse Popular Code Answers by Language