LoginSignup
1
0

More than 1 year has passed since last update.

【Next.js】Linkのaタグのスタイルを無効化

Last updated at Posted at 2022-05-14

難しくありませんが、ググる手間を省くために

<Link href="/">
  <a className="no-underline">
    <div>下線が消えるよ</div>
  </a>
</Link>

色も変えたくないときは

<Link href="/">
  <a className="text-inherit no-underline">
    <div>aタグのスタイルを消すよ</div>
  </a>
</Link>
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0