dropdown-header text-danger staffDetail-font text-truncate的css定义
时间: 2023-06-27 13:03:21 浏览: 194
详解CSS中的z-index属性在层叠布局中的用法
.dropdown-header {
color: #dc3545; /* 红色字体 */
font-size: 1rem; /* 字体大小为1rem */
font-weight: 600; /* 字体粗细为600 */
padding: 0.5rem 1rem; /* 上下左右的内边距为0.5rem和1rem */
text-transform: uppercase; /* 文本转换为大写 */
}
.text-danger {
color: #dc3545 !important; /* 红色字体,加上 !important 表示优先级最高 */
}
.staffDetail-font {
font-size: 1.5rem; /* 字体大小为1.5rem */
font-weight: 500; /* 字体粗细为500 */
}
.text-truncate {
overflow: hidden; /* 溢出隐藏 */
text-overflow: ellipsis; /* 超出部分用省略号表示 */
white-space: nowrap; /* 不换行 */
}
阅读全文