]> sipb.mit.edu Git - ikiwiki.git/blob - doc/forum/formating:_how_to_align_text_to_the_right.mdwn
(no commit message)
[ikiwiki.git] / doc / forum / formating:_how_to_align_text_to_the_right.mdwn
1 as in title, how to align text to the right?
2
3 > Add to your local.css a class that aligns text to the right:
4
5         .alignright { text-align: right; }
6
7 > And then you just just use `<span class="alignright">` around
8 > other html.
9
10 > You can refine that, and allow right-aligning markdowned text
11 > by using the [[ikiwiki/directive/template]]
12 > directive, with a template that contains the html. The 
13 > [[templates/note]] template does something similar. --[[Joey]]
14
15 >> Thanks!