ナビゲーション

ナビゲーションの復習

・li要素の横並びはfloatを使う。

・floatを使ったらoverflow:hiddenを指定する。

ナビゲーションの文字を隠す

・右にずらす

 white-space: nowrap;

    text-indent: 100%;

    overflow: hidden;

・左にずらす

    text-indent: -999em;

・そのほか

 visibility: hidden;

    レイアウト領域を確保したまま文字のみを不可視

   display: none;

 レイアウト領域も文字も不可視