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.

聖杯レイアウト作成してみる

Posted at

聖杯レイアウト作成してみる

.container {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
}

nav {
    height: 50px;
    background-color: gray;
    text-align: center;
    vertical-align: middle;
}

main {
    display: flex;
    flex-direction: row;
    flex: 1
}

.bottom {
    height: 100px;
    background-color: wheat;
    text-align: center;
}


.left {
    width: 300px;
    background-color: coral;
}

.middle {
    flex: 1
}

.right {
    width: 300px;
    background-color: teal;
}
import React from 'react'
import './Hoge.css'

export const Hoge = () => {
    return (
        <>
            <div className="container">
                <nav>navigation</nav>
                <main>
                    <div className="left">left</div>
                    <div className="middle">middle</div>
                    <div className="right">right</div>
                </main>
                <div className="bottom">bottom</div>
            </div>
        </>
    )
}

結果
スクリーンショット 2020-11-18 22.37.22.png

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?