html: © doesn't show

后端 未结 4 703
清酒与你
清酒与你 2020-12-31 03:16

when i wrote © in my page it doesn\'t show the copyright symbol,

and show the point instead, just . it shows. maybe you know w

相关标签:
4条回答
  • 2020-12-31 03:47

    Add

    <meta charter="utf-8">
    

    In The heading tag and you could also add

    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    
    0 讨论(0)
  • 2020-12-31 03:56

    Most likely — because the font you are using has a broken copyright character in it.

    Without a test case it is hard to make a guess beyond that.

    0 讨论(0)
  • 2020-12-31 04:00

    Put the copyright symbol in a <span> tag and in your css use a font that works.

    <span class="copyright">&copy;</span>2007 Syom Industries
    

    CSS:

    .copyright {
        font-family: Arial,
             "Helvetica Neue",
             Helvetica,
             sans-serif;
    }
    
    0 讨论(0)
  • 2020-12-31 04:05

    Adding a &nbsp; before the &copy; works for me as well, even with the Helvetica Neue font.

    0 讨论(0)
提交回复
热议问题