Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
21 のヘッダー画像と同じ行にナビゲーションを配置するにはどうすればよいでしょうか? 今はナビゲーションメニューが画像の上にありますが、横に並べて欲しいです。これを達成する方法はありますか?ありがとう!
「position:relative」を#mastheadに追加します。
#masthead {position: relative;}
次に、ナビゲーションを絶対位置で配置します。
#site-navigation { position: absolute; bottom: 0; /* or top, if you prefer */ right: 0; }