Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
/* Hide empty error messages */ .error-msg:empty { display: none; } /* Show placeholder when container is empty */ .cart-items:empty::before { content: "Your cart is empty"; color: #6c757d; padding: 2rem; display: block; text-align: center; }
Result
Open