A much cleaner approach is to just use CSS. The below style will hide divs which are emtpy. div:empty { display: none } Below code will hide the empty fields (including their labels) when the content is empty. This code will hide the email Heading with an empty value. Javascript code let empty = document.querySelectorAll(‘.row […]
Category: CSS
Border Radius
Why we use border radius? To apply rounded corner to a HTML element, we use border radius #example-one { border-radius: 10px; background: red; } #example-two { border-radius: 10px; border: 3px solid #000000; } Why we use border radius? To apply rounded corner to a HTML element, we use border radius

CSS Introduction
What is CSS? CSS stands for Cascading Style Sheets CSS is the language for describing the presentation of Web pages, including colors, layout, and fonts. It allows one to adapt the presentation to different types of devices, such as large screens, small screens, or printers. CSS is independent of HTML and can be used with any XML-based markup language. body { […]