J'écris un quiz en html
et j'aimerais insérer un espace vertical vierge cohérent entre les questions (comme on utiliserait vspace{3 cm}
dans LaTeX).
Par exemple :
<html>
<body>
<p>
This is the first question?
<!-- this is where I want about 3 cm of space -->
</p>
<p>
This is the second question?
<!-- this is where I want about 3 cm of space -->
</p>
</body>
</html>
Existe-t-il un moyen simple de le faire en utilisant seulement html
et css
?