🔥CSSで中央のコンテンツを水平方向と垂直方向に3つの方法✨


CSSで中央のコンテンツを水平方向と垂直方向に3つの方法✨

クラシックオプション
.classic{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
グリッドウェイ
.grid{
    display: grid;
    place-items: center;
}
フレックスボックスウェイ
.flexbox{
    display: flex;
    align-items: center;
    justify-content: center;
}
🛴 フォローオン
https://bit.ly/3oBQbc0