MediaWiki:Common.css: Difference between revisions

I think this column stuff is obsolete now that browsers support column-count in CSS
m (corrected comment on reflist-lower-alpha)
(I think this column stuff is obsolete now that browsers support column-count in CSS)
Line 260: Line 260:
.wikitable td dl {
.wikitable td dl {
     text-align: left;
     text-align: left;
}
/* Content in columns with CSS instead of tables [[Template:Columns]] */
div.columns-2 div.column {
    float: left;
    width: 50%;
    min-width: 300px;
}
div.columns-3 div.column {
    float: left;
    width: 33.3%;
    min-width: 200px;
}
div.columns-4 div.column {
    float: left;
    width: 25%;
    min-width: 150px;
}
div.columns-5 div.column {
    float: left;
    width: 20%;
    min-width: 120px;
}
}