Jump to content

Help:Useful styles: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Merauk (talk | contribs)
mNo edit summary
actually just point that section at classes
 
(23 intermediate revisions by 17 users not shown)
Line 1: Line 1:
{{update|reason=<em>Thought in [[Special:Diff/136610358|June 2007]] to be outdated, and all these years later this page has received virtually no updated content</em>|discuss=Not a lot of new content}}
{{Wikipedia how to}}
This page documents various CSS elements that are useful to know when working in the article and template namespaces. For information about how to use them, see:
This page documents various CSS elements that are useful to know when working in the article and template namespaces. For information about how to use them, see:

__NOTOC__
== CSS classes ==
== Classes ==
{{main|Wikipedia:Catalogue of CSS classes}}
*'''wikitable''' This class represents Wikipedia's favored style for data tables.
*'''toccolours''' This class gives the template borders and colors similar to that of the Table of Contents of a page. ''Do not use <code>id="toc</code>" instead of this,'' as it risk breaking some scripts. <code>toccolours</code> is used on most footer templates (for examples, {{tl|Region}})
*''' messagebox standard-talk''' This class combination is used to style templates affected by [[WP:TS]]


== Specific styles ==
== Specific styles ==
Line 15: Line 15:
*'''margin:0 0 0.5em 1em;''' This style prevents text from running straight to the template by saving blank space. It should be used on boxes which are floated right (using '''float: right;''').
*'''margin:0 0 0.5em 1em;''' This style prevents text from running straight to the template by saving blank space. It should be used on boxes which are floated right (using '''float: right;''').
**'''margin:0 1em 0.5em 0;''' This performs the same function as the style directly above, but should be used for boxes which are floated left (using '''float: left;''').
**'''margin:0 1em 0.5em 0;''' This performs the same function as the style directly above, but should be used for boxes which are floated left (using '''float: left;''').
*'''margin:1em auto;''' This style is the proper way to center a footer or similar template. A 1em margin is added at the top and the bottomof the template.
*'''width:90%;''' <code>90%</code> is a recommended width to allow some whitespace on each side of templates that would otherwise stretch across the text area, such as the aforementioned {{tl|Region}} or {{tl|Cabinet of Canada}}, to give two examples.


==See also==
*[[Wikipedia:Catalogue of CSS classes]]
*[[Wikipedia:WikiProject Microformats/classes|Classes used in microformats]]


{{Wikipedia technical help|collapsed}}
<!--Categories-->
[[Category:Wikipedia templates|{{PAGENAME}}]]


[[Category:Wikipedia template help|Styles]]
<!--Other languages-->

Latest revision as of 23:32, 22 January 2023

This page documents various CSS elements that are useful to know when working in the article and template namespaces. For information about how to use them, see:

Classes

[edit]

Specific styles

[edit]
  • border-collapse:collapse This style will eliminate 3-d style borders created by the border attribute and collapse them in 1px wide borders. This property will override cellspacing! To define similar whitespace, use the border-spacing property (although it is not possible to have both border-spacing and border-collapse for the same table).

Moving stuff

[edit]
  • float:right and clear:right These styles are used to move a table to the right-hand side of the screen. Float right is equivalent to align="right" The clear code property makes it impossible for the movement to be blocked by another box or picture: the template will automatically move under it.

Margins and sizes

[edit]
  • margin:0 0 0.5em 1em; This style prevents text from running straight to the template by saving blank space. It should be used on boxes which are floated right (using float: right;).
    • margin:0 1em 0.5em 0; This performs the same function as the style directly above, but should be used for boxes which are floated left (using float: left;).

See also

[edit]