课堂随笔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;

}

posted @ 2026-05-06 11:03  格赫罗斯  阅读(10)  评论(0)    收藏  举报