是否可以在CSS content
属性中使用换行符字符来强制换行?类似的东西:
figcaption:before
{
content: 'Figure \n' + attr(title);
}
答案 0 :(得分:130)
figcaption:before
{
content: 'Figure \a' attr(title);
white-space: pre;
}
请注意,在content
属性值中,连接仅由空格表示,而不是由“+”符号表示。 CSS字符串文字中的转义符号\a
表示换行符。
答案 1 :(得分:127)