Consolidating output/ mouse over text

So I'm working on a roll table were I generate a group of monsters along with information about each individually
Was wondering if there is any formatting tips to have this not just look like a brick of text, or to "prompt" for more info for the monster if it more relevant than the others.
Theoretically mouse over text would be the perfect solution but I have a strong feeling it is not possible.

For example I generate a group of 10 monsters, but a 2 (i would not know which until after they have been generated) require more info/detail unquie to that monster. If that end up being a paragraph, have one for each monster on generate would destroy my ability to pars the simpler info quick and make it less readable. Looking for away to solve this if any are known.

Comments

  • You actually can do mouseover text.

    Table: MouseoverTest
    <div title="mouseover">Here's some text.</div>
    

    Replace the word mouseover with what you want to appear as the mouseover text, and the inner part with what you want to show.

    That said, unless it's a short note, I think it's more of a PITA to use the output that way. I just use line breaks, boldfacing, and other formatting to get a nicely formatted text block.

    Some formatting options:

    Line breaks: <br>
    Boldface: <b>your text</b>
    Italics: <i>your text</i>
    Extra spaces: &emsp;
    

Leave a Comment