让语音标记跟随引用

发布于 2024-11-08 20:46:25 字数 329 浏览 1 评论 0原文

我正在尝试让语音标记出现在引用的开头和结尾。

这是代码的链接(没有图像):

http://jsfiddle.net/tomperkins/cGDUc/

您可以看到引文开头和结尾处的灰色块(在本例中我已将语音标记图像替换为灰色块)。问题是收盘报价位于右侧。

我希望结束语标记(或灰色块)直接位于引文之后。在此示例中,它将直接出现在“...期望”之后,

感谢所有帮助和提示!

提前致谢,

汤姆·帕金斯

I'm trying to get speechmarks to appear at the start and end of a quote.

Here's a link to the code (without images):

http://jsfiddle.net/tomperkins/cGDUc/

You can see the grey blocks (I've replaced the speechmark images with grey blocks in this case) I have at the start and end of the quote. The trouble is the closing quote sits on the right hand side.

I'd like the closing speechmark (or grey block) to sit straight after the quote. In this example it would come straight after '...expectation'

All help and tips appreciated!

Thanks in advance,

Tom Perkins

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

成熟稳重的好男人 2024-11-15 20:46:25

HTML

<h2>On all levels they exceed our expectation</h2>

CSS

h2:before {
content: "“";
}

h2:after {
content: "”";
}

或者,您可以使用图像:

h2:before {
content: url(imgsrc);
}

h2:after {
content: url(imgsrc);
}

高度简化的示例: http://jsfiddle.net/cGDUc/14/< /a>

HTML

<h2>On all levels they exceed our expectation</h2>

CSS

h2:before {
content: "“";
}

h2:after {
content: "”";
}

Alternately, you can use images:

h2:before {
content: url(imgsrc);
}

h2:after {
content: url(imgsrc);
}

Highly simplified example: http://jsfiddle.net/cGDUc/14/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文