results in this generated output (located in index.html):
test tekst.
Obviously, no effect...
If I remove the first closing and second opening paragraph tag manually, then all is working fine.
Is this a code generation issue? Why is the paragraph closed after the class="tab" and then reopened before the real text that should be indented with 40px?
Best,
-- Geert
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
I've added a small .css file, called mine.css, to my project with the following content:
.tab { margin-left: 40px; }
This, to indent text with 40px whenever I want it to happen.
I also added the file to the project using the HTML_EXTRA_STYLESHEET and tick marked the option GENERATE_HTML.
The .css file is indeed part of the generated files and is taken into account in the index.html file:
<link href="mine.css" rel="stylesheet" type="text/css">
However, this HTML code:
Test
results in this generated output (located in index.html):
test tekst.
Obviously, no effect...
If I remove the first closing and second opening paragraph tag manually, then all is working fine.
Is this a code generation issue? Why is the paragraph closed after the class="tab" and then reopened before the real text that should be indented with 40px?
Best,
-- Geert