unicode 或 HTML 是否有垂直双 guillemet(V 形)?
有谁知道 unicode/HTML 空间中是否存在类似于 »
(») 表示的双 guillemet 的双 V 形符号?
换句话说,如果我可以使用文本,我会尽量避免使用图像,但我需要这样的东西:
这是双 V 形,我似乎无法弄清楚。对我来说看起来像是图形。
Does anybody know if there's a double chevron symbol in unicode/HTML-space similar to the double guillemet represented by »
(»)?
In other words, I'm trying to avoid using an image if I can get by with text, but I need something like this:
It's the double chevron I can't seem to figure out. Looks like graphics for me it is.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
︽ U+FE3D 垂直左双角括号演示表格
︾ U+FE3E 垂直右双角括号演示表格
不过,这些需要中文或日文字体。
︽ U+FE3D PRESENTATION FORM FOR VERTICAL LEFT DOUBLE ANGLE BRACKET
︾ U+FE3E PRESENTATION FORM FOR VERTICAL RIGHT DOUBLE ANGLE BRACKET
These require a Chinese or Japanese font though.
我无法为您提供您想要的字符实体,但可以实现...替代方案,并且仍然不使用图像(尽管它确实需要将文本本身包装在元素中,在本例中
span
):CSS:
JS Fiddle 演示。
上面的
span.rotated
部分,对于IE< 10 兼容性(使用过滤器,而 IE 10(或可能 9)将/应该使用-ms-transform
或简单地transform
CSS3),使用过滤器
方法:JS Fiddle demo(适用于IE 7/XP,其他我无法测试的版本)。
I can't give you the character entity that you want, but it's possible to effect an...alternative, and still not use images (though it does require that the text itself be wrapped in an element, in this case
span
):CSS:
JS Fiddle demo.
The above
span.rotated
section, for IE < 10 compatibility (using filters, whereas IE 10 (or possibly 9) would/should use the-ms-transform
or, simply,transform
CSS3), using afilter
approach:JS Fiddle demo (works in IE 7/XP, other versions I'm unable to test).
旋转有问题。如果将旋转(90 度)和旋转(-90 度)应用于两个单独的 »,您将看到它们的位置发生变化。解决这个问题的一种巧妙方法是应用 Direction: rtl ,如下所示:
http://codepen.io/tomasz86/笔/lmCaL
There's a problem with rotation. If you apply rotation(90deg) and rotation(-90deg) to two separate » you'll see that their position changes. A hacky way to fix it is to apply direction: rtl like this:
http://codepen.io/tomasz86/pen/lmCaL