next.jsの環境にWebフォントを読み込む

next.jsの環境にWebフォントを読み込む

nuxt.jsの環境にWebフォントを読み込むには、nuxt.config.jsのheadの中のlink配列に要素を追加(インクルード)する必要があります。 link:[ {rel:'icon',type:'image/x-icon',href:'/favicon.ico'},...
text-decoration:noneが効かず、リンクテキストの下線が消せないときの対処法

text-decoration:noneが効かず、リンクテキストの下線が消せないときの対処法

事象が起きた環境:Chrome87 要素にtext-decoration:none;を指定したが、聞いていない様子。 .test{ text-decoration:none; } ①displayのプロパティをblockまたはinline-blockにする。 .test{ display:inline-block; text-decoration:none; } ちなみに反対に下線をテキストに付与したい場合は、以下で実装できます。 .test{ display:inline-block;...