flexbox+absoluteで上下左右(IE11対応)
こちらはダミーテキストです。
急行停車駅
「久米川」駅5分、「西武新宿」直通28分
.type_01 .inner {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
absoluteで上下左右
こちらはダミーテキストです。
急行停車駅
「久米川」駅5分、「西武新宿」直通28分
.type_02 .inner {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
}
.type_02 .text_area {
display: table;
margin: 0px auto 0px auto;
}

