cssOMS/alignment.scss
2023-05-24 18:09:09 +00:00

41 lines
421 B
SCSS
Executable File

.center {
margin: 0 auto;
}
.centerText {
text-align: center;
}
.rightText {
text-align: right;
}
.floatLeft {
float: left;
}
.floatRight {
float: right;
}
.pAlignTable {
display: table;
width: 100%;
}
.vCenterTable {
display: table-cell;
vertical-align: middle;
}
.h-overflow {
overflow-x: auto;
}
.overflowfix {
overflow: auto;
}
.nowrap {
white-space: nowrap;
}