CSS
 Computer >> コンピューター >  >> プログラミング >> CSS

CSSを使用してWebページの下部に留まるようにナビゲーションバーを設定します


ナビゲーションバーを下部に設定するには、位置を使用します:固定プロパティ、下部プロパティ

次のコードを実行して、一番下にとどまるメニューを実装してみてください。

<!DOCTYPE html>
<html>
   <head>
      <style>
         ul {
            list-style-type: none;
            position: fixed;
            bottom: 0;
            width: 100%;
         }
         li {
            float: left;
               border-right: 1px solid white;
         }
         li a {
            display: block;
            padding: 8px;
            background-color: orange;
         }
         li:last-child {
            border-right: none;
         }
         div {
            padding:10px;
            margin-top:10px;
            background-color:white;
            height:1000px;
         }
      </style>
   </head>
   <body>
      <ul>
         <li><a href = "#home">Home</a></li>
         <li><a href = "#news">News</a></li>
         <li><a href = "#contact">Contact</a></li>
         <li><a href = "#about">About</a></li>
      </ul>
      <div>
         <p>Adding demo text to check fixed menu.</p>
         <p>Adding demo text to check fixed menu.</p>
         <p>Adding demo text to check fixed menu.</p>
         <p>Adding demo text to check fixed menu.</p>
         <p>Adding demo text to check fixed menu.</p>
         <p>Adding demo text to check fixed menu.</p>
         <p>Adding demo text to check fixed menu.</p>
         <p>Adding demo text to check fixed menu.</p>
         <p>Adding demo text to check fixed menu.</p>
         <p>Adding demo text to check fixed menu.</p>
         <p>Adding demo text to check fixed menu.</p>
         <p>Adding demo text to check fixed menu.</p>
         <p>Adding demo text to check fixed menu.</p>
         <p>Adding demo text to check fixed menu.</p>
      </div>
   </body>
</html>

  1. CSSを使用してスクロール上の固定ナビゲーションバーを作成するにはどうすればよいですか?

    CSSのpositionプロパティを指定することで、CSSを使用して固定ナビゲーションバーを作成できます。 CSSのpositionプロパティの構文は次のとおりです- Selector {    position: /*value*/; } 以下は、CSS位置プロパティの例です。 例 <!DOCTYPE html> <html> <head> <style> #navigation-bar {    overflow: hidden;    box-shadow: inset 0 0

  2. ChromeforAndroidでメニューバーを一番下に移動する方法

    携帯電話の他の多くのブラウザと同様に、GoogleChromeブラウザのURLとメニューバーが上部にあります。ただし、最近のGoogle Chromeのビルドでは、メニューバーを画面の下部に移動できます。これは、片手で電話を使用する人にとってより便利です。 Chrome画面のレイアウトを変更し、メニューバーを一番下に移動する方法は次のとおりです。 Chromeメニューバーを一番下に移動する このトリックはまだ実験段階であり、[設定]ページでは使用できません。それが機能するためには、Chromeフラグを有効にする必要があります。 1. Chromeをインストールしていない場合は、こちらから