cssの小技

PCではtelリンクを削除

<a href=”tel:”>
a[href^="tel:"] {
    pointer-events: none;
}

疑似要素ごとセンターそろえ

See the Pen Untitled by web-Bookmark (@dkvcfvga-the-styleful) on CodePen.

gridを使用した縦横中央寄せ

See the Pen gridを使用した縦横中央よせ by web-Bookmark (@dkvcfvga-the-styleful) on CodePen.

//place-itemsはalign-itemsとjustify-itemsを組み合わせたものです
display: grid;
align-items: center;
justify-items: center;

二重の下線

See the Pen 二重の下線 by web-Bookmark (@dkvcfvga-the-styleful) on CodePen.

複数行に下線を引く

See the Pen 複数行に下線を引く by web-Bookmark (@dkvcfvga-the-styleful) on CodePen.

横並びメニューに間に縦線を引く

See the Pen 横並びメニューに間に縦線を引く by web-Bookmark (@dkvcfvga-the-styleful) on CodePen.

PCのみhover有効

See the Pen Untitled by web-Bookmark (@dkvcfvga-the-styleful) on CodePen.