Template:WikiTableCSS.css: Difference between revisions

From KSI Wiki
Jump to: navigation, search
(Void changed the content model of the page Template:WikiTableCSS.css from "wikitext" to "Sanitized CSS")
Tag: content model change
No edit summary
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
.wikitable {
.wikitable {
     border-collapse: collapse;
     border-collapse: collapse;
    border-radius: 10px; /* Adjust the radius as needed */
    overflow: hidden; /* Ensures the border-radius applies to all corners */
}
}


.wikitable td, .wikitable th {
.wikitable td, .wikitable th {
     border: 1px solid black;
     border: 2px solid #3c4041;
    padding-right: 2px; /* Adjust the padding as needed */
}
}

Latest revision as of 00:10, 26 August 2024

.wikitable {
    border-collapse: collapse;
    border-radius: 10px; /* Adjust the radius as needed */
    overflow: hidden; /* Ensures the border-radius applies to all corners */
}

.wikitable td, .wikitable th {
    border: 2px solid #3c4041;
    padding-right: 2px; /* Adjust the padding as needed */
}