3 Ways to Hide an Element (HTML / CSS) 24 April 2022 minute reading Hiding an element in web pages is sometimes necessary or we use this for an instant (or temporary) fix. Lets examine the most common types of element hiding in web pages. Our first two are going be CSS attributes: display: none and visibility: hidden Even though most of us already use these, let’s sum up […]
Increase Your Page Loading Speed: Asynchronous and Lazy Loading 10 April 2022 minutes reading Even though there are opposing views, the majority will agree that; ‘good user experience starts with fast service’. Web browsers (Chrome, Firefox, Opera…) load visual and text content simultaneously. This gives a nice view when opening the page. Such as: <h2>A Nice Header</h2> <img src=”a-large-image” alt=”Image info” /> <p>Texts that present the information the user […]
Turn Your Browser Into Notepad 7 April 2022 minute reading No more worrying about searching for a post-it, paper, opening a program or application from your computer in an emergency. data:text/html, <html contenteditable> Paste the above code into your browser’s address line, press ENTER, then drag and drop it to your shortcut bar. Click this shortcut as needed. You can now use the newly opened […]