style.css: add center utility class

This commit is contained in:
Zankaria 2024-05-20 23:30:40 +02:00
parent cfdbcfcad9
commit 295cde61f6

View File

@ -1205,6 +1205,14 @@ span.pln {
min-width: 48px; min-width: 48px;
} }
/* The center tag has been deprecated in HTML 5 */
.center {
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
}
/* Text and accessibility */ /* Text and accessibility */
.ltr { .ltr {
direction: ltr; direction: ltr;
@ -1980,4 +1988,3 @@ span.orangeQuote {
float: right; float: right;
margin: 0em 1em; margin: 0em 1em;
} }