Re: How does Eudoc/Creole indent text?
- Posted by useless_ Apr 06, 2013
- 1326 views
ArthurCrump said...
Thanks for the information. Sorry about the lateness of this reply; I thought I would have some time to spare when I retired, but I seem to be trying to do several things at once. I will probably need a little header file, an assembly file and a CSS file. I doubt if I will get my HTML file to be in the style of the Euphoria documentation, but I should at least be able to improve it.
Arthur
Not sure what you mean to do, but i use
p.par { text-indent: 30px; text-align: justify; }in css (you could inline it in the html instead of a separate css file), and then the html file uses it like
<p class="par">This gets indented.</p>
useless