CSS Display
<!DOCTYPE html> <html> <head> <style> .placeholder { visibility: hidden; } </style> </head> <body> <p>Loading complete.</p> <p class="placeholder">This text keeps its space.</p> <p>Next line.</p> </body> </html>
<!DOCTYPE html> <html> <head> <style> .placeholder { visibility: hidden; } </style> </head> <body> <p>Loading complete.</p> <p class="placeholder">This text keeps its space.</p> <p>Next line.</p> </body> </html>