目录

CSS hyphenate-character 属性


示例

设置连字符:

<style>
div.a {
  hyphenate-character: auto;
}

div.b {
  hyphenate-character: "=";
}
</style>

<body>
<div class="a">A veryvery&shy;very long word.</div>
<div class="b">A veryvery&shy;very long word.</div>
</body>
亲自试一试 »

定义和用法

这个hyphenate-character属性定义在行尾、断字之前使用的字符。

展示演示❯

默认值: 汽车
遗传: 是的
可动画: 不。阅读可动画的
版本: CSS4
JavaScript 语法: 对象.style.hyphenateCharacter="/"

浏览器支持

表中的数字指定完全支持该属性的第一个浏览器版本。

Property
hyphenate-character 106.0 106.0 98.0 17.0 92.0


CSS 语法

hyphenate-character: auto| string|initial|inherit;

属性值

Value Description Demo
auto Default. The browser selects an appropriate character based on the current typographic conventions Demo ❯
string The character used at the end of line, before a hyphenation break Demo ❯
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit