This is a stripped-down version of a single section of Grok TiddlyWiki, optimized for fast loading and readability by search engines. Some features are missing.

For the full Grok TiddlyWiki experience, please visit the wiki version of this page.

Wr:Styles

31st January 2021 at 9:41am

You can apply arbitrary CSS styles or classes to blocks of text.

@@color:red;
Here is some red text.
@@

<style>
.my-blue-bold-class {
    font-weight: bold;
    color: blue;
}
</style>

@@.my-blue-bold-class
Here is some blue, bold text.
@@

Here is some red text.

Here is some blue, bold text.

See Stylesheets for more information on styles and this syntax.