/* 使用 text-decoration 属性添加下划线 */
a {
text-decoration: underline;
}
/* 或者使用 border-bottom 模拟下划线效果 */
p {
border-bottom: 1px solid black;
padding-bottom: 2px; /* 防止文本和下划线太贴近 */
}
text-decoration: underline;
:这是最简单的方式,直接给元素添加下划线。适用于链接 (<a>
) 等元素。border-bottom
:通过设置底部边框来模拟下划线效果,适合需要更灵活控制的情况(如调整下划线的颜色、粗细等)。上一篇:css动画
下一篇:css字体加粗
Laravel PHP 深圳智简公司。版权所有©2023-2043 LaravelPHP 粤ICP备2021048745号-3
Laravel 中文站