すたすた式
Blogger Vaster2
before
after
たまたま見つけCSSプロパティです。
残念ながらChromeしか対応していないようですね :( (2019年4月現在)
text-underline-position - CSS: カスケーディングスタイルシート | MDN
text-underline-position CSS プロパティは、text-decoration プロパティにおける underline で指定される下線の位置を設定するために使われます。
htmlかbodyあたりに適用すればいいと思います
html
body
htmlの例
html { text-underline-position: under; }
bodyの例
body { text-underline-position: under; }
text-decoration-skip-inkというプロパティを使うとこんな感じになりました(chrome)
text-decoration-skip-ink
body { text-decoration-skip-ink: none; }
safari に適用させるにはベンダープレフィックスをつけた -webkit-text-decoration-skip: none; が必要なようです
-webkit-text-decoration-skip: none;
body { text-decoration-skip-ink: none; -webkit-text-decoration-skip: none; /* safari用 */ }
ベンダープレフィックスはこちらで付けました
参考にさせていただいたサイト
text-decoration-skip-ink の話 - zoelog.
text-decoration-skip-inkの話。
サイト内検索に使ってください 🐤
© 2015 すたすた式
Enjoy!👍
QooQ
コメントなし:
コメントを投稿