Page 1 of 1
Line spacing for the text
Posted: Mon Jun 24, 2019 12:48 pm
by Manohar_1024
HI,
I want to provide line spacing in steps and text content. Currently we are using DITA with CSS output.
Thank you
Re: Line spacing for the text
Posted: Tue Jun 25, 2019 2:45 pm
by Costin
It is not very clear what you mean.
If you refer to the distance between lines, then you should match the paragraphs and the task steps and just use the line-height CSS property:
Code: Select all
*[class~="topic/p"], *[class~="task/step"]{
line-height: 50px;
}
If you still need help with CSS properties,
Here is a good CSS tutorial resource.
Regards,
Costin