css波浪线和着重号效果
效果如图所示:

/* 波浪线样式 */.underline-wave {text-decoration: underline wavy #000; /* CSS 波浪属性 */text-decoration-thickness: 2px; /* 粗细 */}/* 着重号样式 */.underline-circle {text-emphasis: circle;text-emphasis-position: under;-webkit-text-emphasis: circle;-webkit-text-emphasis-position: under;}
text-emphasis的其它效果,也是第一次见识了

