/* CSS to initially hide dropdown-content and reveal it on hover */<br />
        .dropdown-content {<br />
            display: none;<br />
        }<br />
        .dropdown:hover .dropdown-content {<br />
            display: block;<br />
        }