6 ms·
Seems like it would be fairly easy to use this pseudo selector, and apply it to every element on the page. Making them show up as empty to the user
by JohnAaronNelson 4y ago
Seems like it would be fairly easy to use this pseudo selector, and apply it to every element on the page. Making them show up as empty to the user
- DoctorOW 4y agoYou could add a data attribute to the html tag of the document with the current URL, I.E. <html data-path="https://www.saashub.com/about"> then hide the full page with: html {display: none;} html[data-path*="saashub.com"] {display:block;}