Monthly Archives: November, 2021
Web Development
Writing conditionals in CSS: when/else
CSS already has had conditionals in the form of @media queries or @support queries to selectively apply styling to the document. But...
JavaScript
Retrieving content value of ::after or ::before in JavaScript
For the following element:#element::after {
content: 'Custom value'
}If we needed a way of...
Development
How to permanently remove a file from Git history
We all make mistakes sometimes. Pushing files that contain some secrets or sensitive information to a Git repository is fairly common. And...