0

Hi have this in my sass:

   &:before {
                content:"·";
                font-size:120px;
            }

but in the CSS it's being parsed as ┬À. Is it to do with codification or something? What do I need to do to adjust?

user1937021
  • 10,151
  • 22
  • 81
  • 143

1 Answers1

2

Try the escaped unicode instead:

&:before
{
    content: '\00B7';
    font-size: 120px;
}

More information:

Community
  • 1
  • 1
Marty
  • 39,033
  • 19
  • 93
  • 162