ID:1680448
 
(See the best response by Tom.)
Not exactly a code problem, but can anyone point me to a list of which css/html tags are supported by maptext/output? I've figured out quite a few, but I'm particularly looking for a way to align text withing a div/span. css text-align doesn't seem to work.

Thanks
Best response
Currently you can't align multiple blocks within the maptext separately (you would have to output separate maptext atoms), but you can apply an alignment to the whole thing via the html "align" and "valign" tags. This should also work with css via the style "text-align" and "vertical-align", although you said it didn't so we may have to look at that. It will probably only respect the last such call, so hopefully that's the issue.
Documentation for maptext says the same tags as the text output, so I would think we're looking at the following entries for list of tags, though Tom has the comment above specifically on what you're looking for.

http://www.byond.com/docs/ref/info.html#/DM/text/style
http://www.byond.com/docs/ref/info.html#/DM/text/tags
In response to Tom
I'm guessing that's the issue than. I was trying to align separate blocks differently within the maptext. I'll work around it with additional atoms. Thanks.
In response to Pirion
Thanks :) I knew I'd seen those around at some point, but couldn't find them. Kept looking through the output and maptext entries.