课堂随笔8
/* 单行文本超出省略号 /
.text-ellipsis {
/ 1. 强制文本不换行 /
white-space: nowrap;
/ 2. 超出部分隐藏 /
overflow: hidden;
/ 3. 超出部分显示省略号 */
text-overflow: ellipsis;
}
/* 定义服务器字体 */
@font-face {
font-family: "MyCustomFont"; /* 自定义字体名称 */
src: url("./fonts/your-font.woff2") format("woff2"),
url("./fonts/your-font.woff") format("woff");
font-weight: normal;
font-style: normal;
``
}
/* 使用自定义字体 */
.custom-font-text {
font-family: "MyCustomFont", sans-serif;
}

浙公网安备 33010602011771号