User:Sandungas/vector.css: Difference between revisions

From PS3 Developer wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 10: Line 10:


/* Removes pading inside wikitable data cells */
/* Removes pading inside wikitable data cells */
table td {
td {
     padding:0px;
     padding:0px;
}
}

Revision as of 18:03, 13 September 2021

/* Prevents line wrapping inside <pre> and <syntaxhighlight> tags, and adds a scrollbar when needed */
pre {
    white-space: pre;
    overflow: auto;
    padding: 0px;
    margin: 0px;
    background-color: #f3f3f3;
    border: 1px solid #e0e0e0;
}

/* Removes pading inside wikitable data cells */
td {
    padding:0px;
}