CSS justifying text
Objective
To justify the text on the digital garden page.
Prerequisites
There is a preset SCSS file named custom-style.scss
. Modifications should be made in this file.
Solution
custom-style.scss modification
body {
.content {
text-align: justify; // This justifies the text
hyphens: auto;
}