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

中文引号只占半个汉字的宽度,如何实现的?我看到QQ空间里发表日志后,中文引号只占半个汉字的宽度,如何实现

中文引号只占半个汉字的宽度,如何实现的?
我看到QQ空间里发表日志后,中文引号只占半个汉字的宽度,如何实现的?

[解决办法]
是字体的原因

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