¿Cómo puedo insertar un espacio en blanco vertical en un documento html?
Estoy escribiendo un cuestionario enhtml
y me gustaría insertar un espacio vertical en blanco consistente entre las preguntas (como si se usaravspace{3 cm}
en LaTeX).
Por ejemplo
<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>
Hay una manera directa de hacer esto usando solohtml
ycss
?