hanging-punctuation - CSS(层叠样式表) 编辑

hanging-punctuationCSS属性指定了标点符号应该放在文本句子的开头还是结尾。悬挂标点符号可能被放在线框外。
/* Keyword values */
hanging-punctuation: none;
hanging-punctuation: first;
hanging-punctuation: last;
hanging-punctuation: force-end;
hanging-punctuation: allow-end;

/* Two keywords */
hanging-punctuation: first force-end;
hanging-punctuation: first allow-end;
hanging-punctuation: first last;
hanging-punctuation: last force-end;
hanging-punctuation: last allow-end;

/* Three keywords */
hanging-punctuation: first force-end last;
hanging-punctuation: first allow-end last;

/* Global values */
hanging-punctuation: inherit;
hanging-punctuation: initial;
hanging-punctuation: unset;
初始值none
适用元素all elements
是否是继承属性yes
计算值as specified
Animation typediscrete

语法

这个属性可被指定多个值,可以是一个值,也可以是两个值,或者是三个值。

  • 一个值 语法:在下面列表中的任意一个值。
  • 两个值 语法:
    • 或者与以下任何一个一起使用,并以它们结尾:last,allow-end或force-end
    • 或者与以下任何一个一起使用,并以它们开头:first,allow-end或force-end。
  • 三个值 语法:
    • 或者first, allow-end, 和last
    • 或者 first, force-end, 和 last.

取值

none
无悬挂字符。
first
显示元素的第一个格式化行开头的括号或引号。
last
显示元素的最后一个格式化行结尾的括号或引号。
force-end
显示行结尾处的句号或逗号。
allow-end
如果预先没有其它适合的来适应的,则在行尾显示句号或逗号。

正式语法

none | [ first || [ force-end | allow-end ] || last ]

示例

HTML

<p>“Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur dignissim nunc mauris, et sollicitudin est scelerisque sed. Praesent laoreet tortor massa, sit amet vulputate nulla pharetra ut.”</p>

CSS

p {
  hanging-punctuation: first;
  margin: .5rem;
}

Result

Specifications

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:43 次

字数:5087

最后编辑:7年前

编辑次数:0 次

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