HTML div 高さ 画面全体から指定 viewport

特定のnodeだけ指定したい場合。

height: 80vh

高さ80%の表示になる 便利

<style>
    /* Always set the map height explicitly to define the size of the div
     * element that contains the map. */
    #map {
//これは便利
      height: 80vh;
    }
    /* Optional: Makes the sample page fill the window. */
    html, body {
      height: 100%;
      margin: 0;
      padding: 0;
    }
  </style>

横幅はこう書く