Indent all tags following h2 until next h2 is hit using CSS
问题 In our project I'd like to style our doxygen output differently. Currently the generated html looks like the following: <html> <body> <h1> Heading 1 </h1> <h2> Heading 2.1 </h2> <p> Paragraph 2.1.1 </p> <p> Paragraph 2.1.2 </p> <p> Paragraph 2.1.3 </p> <h2> Heading 2.2 </h2> <p> Paragraph 2.2.1 </p> <p> Paragraph 2.2.2 </p> <p> Paragraph 2.2.3 </p> </body> </html> The <h2> is only styled with a font-size attribute and all <h2> and <p> tags are aligned on the left side of the document. To let