/* 下划线效果的 CSS 示例 */
/* 简单的下划线 */
.text-underline {
text-decoration: underline;
}
/* 自定义下划线样式 */
.custom-underline {
text-decoration: underline;
text-decoration-color: red; /* 下划线颜色 */
text-decoration-thickness: 2px; /* 下划线粗细 */
text-underline-offset: 4px; /* 下划线与文本的距离 */
}
text-decoration: underline;
:这是最基本的下划线样式,直接给文本添加一条默认样式的下划线。text-decoration-color
: 设置下划线的颜色。text-decoration-thickness
: 设置下划线的粗细。text-underline-offset
: 设置下划线与文本之间的距离。你可以根据需要调整这些属性来实现不同的视觉效果。
上一篇:css hsla
下一篇:css 颜色代码
Laravel PHP 深圳智简公司。版权所有©2023-2043 LaravelPHP 粤ICP备2021048745号-3
Laravel 中文站