我使用以下代码对下划线进行样式设置:
text-decoration: underline;
text-decoration-thickness: 1.5px;
text-underline-offset: 3px;
text-decoration-skip-ink: none;
不幸的是,到目前为止,这只在Safari和Firefox中起作用。 -什么是一个优雅的方式来实现这一点,使它也可以在其他常见的浏览器,如Chrome,或Opera?
您可以使用border-bottom
属性来支持所有浏览器,而不是text-decortion-thicther
。