当前位置: 代码迷 >> HTML/CSS >> 中文引号只占半个汉字的宽度,怎么实现的
  详细解决方案

中文引号只占半个汉字的宽度,怎么实现的

热度:51   发布时间:2012-04-21 14:34:44.0
中文引号只占半个汉字的宽度,如何实现的?
我看到QQ空间里发表日志后,中文引号只占半个汉字的宽度,如何实现的?

------解决方案--------------------
是字体的原因
HTML code

<!DOCTYPE HTML>
<html>
    <head>
        <meta charset="gb2312" />
        <title></title>
        <style>
            body {
                font-family: tahoma;
            }
        </style>
    </head>
    <body>
        测试
        <div>
        “地”
        </div>
    </body>
</html> 
  相关解决方案