Template:Float/doc: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
Used to float tables or videos left, right, or center.
Used to float tables or videos left, right, or center.
It's basically a wrapper for a HTML span tag: <code><nowiki>{{float|DIRECTION|CONTENT}}</nowiki></code> creates <code><nowiki><span style="float:DIRECTION">CONTENT</span></nowiki></code>


== Usage ==
== Usage ==
Line 13: Line 15:


=== Example ===
=== Example ===
<code><nowiki>{{float|right| {{youtube|-MY-Kk76x9w|right}} }} blah blah blah blah</nowiki></code>
<code><nowiki>{{float|right| {{youtube|-MY-Kk76x9w}} }} blah blah blah blah</nowiki></code>


'''creates'''
'''creates'''
Line 19: Line 21:




{{float|right| {{youtube|-MY-Kk76x9w|right}} }} blah blah blah blah
{{float|right| {{youtube|-MY-Kk76x9w}} }} blah blah blah blah


{{-}}
{{-}}
== See also ==
*{{tl|center}}
<includeonly>
<includeonly>
[[Category:Formatting templates]]
[[Category:Formatting templates]]
</includeonly>
</includeonly>

Latest revision as of 01:46, 20 March 2015

Used to float tables or videos left, right, or center.

It's basically a wrapper for a HTML span tag: {{float|DIRECTION|CONTENT}} creates <span style="float:DIRECTION">CONTENT</span>

Usage

{{float|DIRECTION|CONTENT}}

DIRECTION can be left, right, or center.

CONTENT is the video or table or whatever content you want to justify.

To break the justification you can include a line break like {{-}}.

If CONTENT contains an equals sign then you will need to place a 2= before that parameter. For example: {{float|DIRECTION|2=CONTENT}}.

Example

{{float|right| {{youtube|-MY-Kk76x9w}} }} blah blah blah blah

creates


blah blah blah blah


See also