Answers for "indents in sugarcube"

0

indents in sugarcube

//You can get an indentation by wrapping your text in:

<div style="text-indent: 2em;">Your Text Here</div>
//Or you can go to your CSS Stylesheet and add something like:

p {
    text-indent: 2em;
}
Then add indents like this:

<p>Your Text Here</p>
//Alternatively you can insert whitespace the length of 2/4 normal spaces like this:

&ensp;Your Text
&emsp;Your Text
Posted by: Guest on December-17-2020

Code answers related to "TypeScript"

Browse Popular Code Answers by Language