Adding double quotes to a paragraph with CSS

前端 未结 4 1964
野的像风
野的像风 2020-12-02 16:42

Lets say I have this paragraph:

This is my paragraph

What is the CSS code to add double quotes to this

4条回答
  •  春和景丽
    2020-12-02 17:24

    Here is what I did to make the quotations on my blockquote work.

    This is for the first quotation mark:

    blockquote:before{content: open-quote;}
    

    and this is for the second quotation mark:

    blockquote:after{content: close-quote;)
    

    However, this only works in CSS3.

提交回复
热议问题