Difference between revisions of "Template:White-space"
From PC-BSD Wiki
Tigersharke (Talk | contribs) |
Tigersharke (Talk | contribs) |
||
| Line 1: | Line 1: | ||
{{#switch: {{{1|}}} | {{#switch: {{{1|}}} | ||
| − | | override = | + | | override = white-space: pre; border:none; background: none; <!-- used for situations that 'pre' is needed for formatting --> |
| − | | normal = white-space: normal; | + | | normal = white-space: normal; <!-- multiple white space collapses, text wraps at box border. --> |
| − | | wrap = white-space: pre-wrap; | + | | wrap = white-space: pre-wrap; <!-- whitespace preserved, text wraps at box border and line breaks. --> |
| − | | wiki = white-space: nowrap; | + | | wiki = white-space: nowrap; <!-- This is the brain damaged method the magic (prefix w/space) wiki text boxes use. --> |
| − | | collapse = white-space: pre-line; | + | | collapse = white-space: pre-line; <!-- multiple white space collapses, text wraps at box border and line breaks. --> |
| − | | code | + | | code <!-- easier to remember effect name. - fall through to next --> |
| − | | pre | + | | pre <!-- explicitly defined name. - fall through to next --> |
| − | | #default = white-space: pre; | + | | #default = white-space: pre; <!-- acts like 'pre' whitespace preserved, text wraps at box border and line breaks. --> |
}} | }} | ||
Revision as of 06:49, 18 February 2013
white-space: pre;