0
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.

IEでもガタガタしないヘッダー固定や左メニュー固定

Last updated at Posted at 2020-07-31

前置き

最近はあまりないデザインかもしれないが、左メニュー、ヘッダー、フッターを固定したデザインで、
デザイナーの意向により、スクロールバーの表示エリアが指定されていたので、position: fixed;を使って実装していた。
IEやEdgeでは、スクロールするとかなりガタガタしていて、使用状況としても、IEユーザーが多かったので、Flexboxを使った書き方に変えました。そのメモです。

Flexboxは、IEでも基本的に問題なく使えますが、
ひとつだけ左寄せ(右寄せ)したいときに使える、margin-right: auto;(margin-left: auto;)はIEでは使えないので、flex: 1;などを使って工夫が必要です。

実装方法

作りたいもの

sample_image1.png

コード

  <div class="layout_outer">
    <div class="layout_top">
      <div class="layout_left"></div>
      <div class="layout_right">
        <div class="layout_right_top"></div>
        <div class="layout_right_bottom"></div>
      </div>
    </div>
    <div class="layout_bottom"></div>
  </div>
 .layout_outer{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
  }
  .layout_top{
    flex: 1;
    overflow: hidden;
    display: flex;
  }
  .layout_left{
    width: 240px;
  }
  .layout_right{
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .layout_right_top{
    height: 60px;
  }
  .layout_right_bottom{
    flex: 1;
    overflow: hidden;
  }
  .layout_bottom{
    height: 30px;
  }

解説

ポイントは、flex-direction: column;flex: 1;をうまく使うことです。

display: flex;で、左右に分割できるのは、よく知られていると思いますが、
flex-direction: column;で、上下に分割できます。

子要素にflex: 1;をつけることによって、その子要素は残りのエリアを埋めてくれます。
overflow: hidden;overflow: auto;を組み合わせるとエリアを超えた内容があってもピッタリ合わせてくれます。

IEでは、marginやpaddingを0にしても、スクロールできるようになってしまうので、htmlタグにoverflow: hidden;する必要があります。

手順①

まず、横幅100%のフッターを作るために上下に分割します。
sample_image2.png

  <div class="layout_outer">
    <div class="layout_top"></div>
    <div class="layout_bottom"></div>
  </div>
 .layout_outer{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
  }
  .layout_top{
    flex: 1;
    overflow: hidden;
    display: flex;
  }
  .layout_bottom{
    height: 30px;
  }

手順②

手順①で分割した上の部分を左右に分割します。
sample_image3.png

  <div class="layout_outer">
    <div class="layout_top">
      <div class="layout_left"></div>
      <div class="layout_right"></div>
    </div>
    <div class="layout_bottom"></div>
  </div>
  .layout_left{
    width: 240px;
  }
  .layout_right{
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

手順③

手順②で分割した右の部分をさらに上下に分割します。
sample_image1.png

  <div class="layout_outer">
    <div class="layout_top">
      <div class="layout_left"></div>
      <div class="layout_right">
        <div class="layout_right_top"></div>
        <div class="layout_right_bottom"></div>
      </div>
    </div>
    <div class="layout_bottom"></div>
  </div>
  .layout_right_top{
    height: 60px;
  }
  .layout_right_bottom{
    flex: 1;
    overflow: hidden;
  }

おまけ①

layout_right_bottomのエリアでもさらにヘッダー、フッター固定が必要な場合
sample_image4.png

  <div class="layout_outer">
    <div class="layout_top">
      <div class="layout_left"></div>
      <div class="layout_right">
        <div class="layout_right_top"></div>
        <div class="layout_right_bottom">
          <div class="layout_right_bottom_top"></div>
          <div class="layout_right_bottom_center"></div>
          <div class="layout_right_bottom_bottom"></div>
        </div>
      </div>
    </div>
    <div class="layout_bottom"></div>
  </div>
  .layout_right_bottom{
    display: flex;
    flex-direction: column;
  }
  .layout_right_bottom_top{
    height: 40px;
  }
  .layout_right_bottom_center{
    flex: 1;
    overflow: auto;
  }
  .layout_right_bottom_bottom{
    height: 40px;
  }

おまけ②

左メニューを閉じたり幅を狭くする場合
classを追加する方法は割愛しますが、transitionを設定しておけば簡単にアニメーションできます
sample_image6.png

  .close .layout_left{
    width: 10px;
  }
  .layout_left,
  .layout_right{
    transition: 0.3s;
  }
0
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
0
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?