行揃えを選択可能にする
行揃えを選択可能にする
例:
中央寄せ:[, 文字]
中央寄せ
右寄せ:[> 文字]
右寄せ
code: style.css
/* 中央寄せ */
.deco-\, {
position: relative;
display: inline-block;
width: 100%;
text-align: center;
}
/* 右寄せ */
.deco-\> {
position: relative;
display: inline-block;
width: 100%;
text-align: right;
}