I\'m implementing a JSF component base where you must override the css being used or it will use its default css. I\'m trying trying to hide the div and I\'ve
div
width: 0; height: 0;
or
visibility: hidden;
opacity: 0;
position: absolute; top: -9999px; left: -9999px;
or just
display: none !important;