テキストを両揃えにする
■テキストを両揃えにする
body {
text-align: justify;
}
このままでは、IEには適用されないので、
IE独自企画の
text-justifyを指定する
-----------------------------------------
body {
text-align: justify;
text-justify: distribute-all-lines;
}
-----------------------------------------