-
Hi there, What would be the best solution for displaying larger text blocks with some minimal rich text functionality, say like
Has anybody perhaps done this with RmlUi before? Thanks for your help! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Maybe I don't fully understand the problem, but as long as you don't need editing, this should be straightforward to do: Just use |
Beta Was this translation helpful? Give feedback.
Maybe I don't fully understand the problem, but as long as you don't need editing, this should be straightforward to do: Just use
<a>
tags,<h1>
tags, sprinkle some<span>
s, and everything else you could need, style them appropriately, add some event handlers, and you should be good to go. This is something the HTML/CSS model excels at in my view. I would stay away from textarea if you don't need text editing.