Files
textual/sandbox/darren/text_align.scss
2022-08-26 15:33:42 +01:00

25 lines
259 B
SCSS

#one {
text-align: left;
background: lightblue;
}
#two {
text-align: center;
background: indianred;
}
#three {
text-align: right;
background: palegreen;
}
#four {
text-align: justify;
background: palevioletred;
}
Static {
padding: 1;
}