cssOMS/alignment.scss
2023-05-28 01:13:23 +00:00

42 lines
432 B
SCSS
Executable File

.nobreak, .nowrap {
white-space: nowrap;
}
.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;
}