2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

優良HPによくあるヘッダーのテンプレート

Posted at

優良な企業のHPによくみられるヘッダーのテンプレート

今回ご紹介するテンプレの内容、特徴。

  • ヘッダーがposition:fixed;で固定されている。
  • 企業様の名前やロゴ、ナビメニューが両端に表示されている。
  • ナビメニューに触れた時アクションが起こる。

主にこのような特徴があると思います。思い当たる節はございませんか?
上記のような構成のコードを紹介いたします。

HTML
<header>
<img src="images/dualslogo.png" alt="logo" class="dualslogo">
<ul>
<li>HOME</li>
<li>WORKS</li>
<li>ABOUT</li>
<li>CONTACT</li>
</ul>
</header>
CSS
header {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
ul {
  display: flex;
  list-style: none;
}

li {
  color: white;
  transition: all 0.3s;
  cursor: pointer;
 //padding,marginなどの調節
}

li:hover {
  色が変わったりすると良いかもしれません。
  }

*個人的な意見ですが全体的にパステルカラーを使うと綺麗に見えます。

2
1
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?