Blog
Manuel Matuzović - TIL My Blog about accessibility, performance, and CSS architecture and layout.
Latest posts <label for="upload">Select file</label><br> <input type="file" id="upload"> [type="file"]::file-selector-button { background-color: hotpink; padding: 0.5rem 1rem; border: 2px solid fuchsia; margin-block-end: 1rem; display: block; border-radius: 3px; } [type="file"]::file-selector-button:hover { background-color: aqua; } My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Feb 13, 2023 <ul> <li>A</li> <li>B</li> <li>C</li> </ul> <p>D</p> console.log(document.body.querySelectorAll( * )) // NodeList(5) [ul, li, li, li, p] console.log(document.body.querySelectorAll( :scope > * )) // NodeList(2) [ul, p] My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Aug 23, 2022 const letters = "availabilities".split(""); letters.forEach(letter => { if (letter === i ) { console.count(`Letter ${letter}`) } }) /* Output: Letter i: 1 Letter i: 2 Letter i: 3 Letter i: 4 */ My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Feb 16, 2022 <!-- comma separated list without spaces and/or url encoded with %20 --> <a href="mailto:manuel@matuzo.at,manuel@webclerks.at"> Contact me and me </a> <!-- or with ?to= parameter --> <a href="mailto:manuel@matuzo.at?to=manuel@webclerks.at"> Contact me and me </a> My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Jul 27, 2021
<textarea spellcheck="false"> Tis is jusst a test. </textarea> <div contenteditable spellcheck="false"> Tis is jusst a test. </div> My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Feb 21, 2021 div { position: absolute; top: 0; left: 0; transition: z-index 2.5s; } My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Dec 17, 2020 <!-- Parent File--> <iframe src="https://codepen.io/matuzo/debug/YzGVXGV" frameborder="0"></iframe> <!-- Embedded file --> <ul> <li> <a href="https://a11yproject.com">no target</a> </li> <li> <a href="https://a11yproject.com" target="_blank">target="_blank"</a> </li> <li> <a href="https://a11yproject.com" target="_parent">target="_parent"</a> </li> </ul> My blog doesn t support comments yet, but…
Dec 16, 2020 <button class="mybutton">Send</button> <!-- red border --> <button class="myButton">Send</button> <!-- green border --> [class*="button" i] { /* matches mybutton and myButton */ border: 10px solid green; } [class*="button"] { /* matches only mybutton */ border-color: red; } My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Nov 27, 2020 <ol type="a"> <li>Element 1</li> <li>Element 2</li> <li>Element 3</li> </ol> <ol type="A"> <li>Element 1</li> <li>Element 2</li> <li>Element 3</li> </ol> <ol type="i"> <li>Element 1</li> <li>Element 2</li> <li>Element 3</li> </ol> <ol type="I"> <li>Element 1</li> <li>Element 2</li> <li>Element 3</li> </ol> <ul type="1"> <li>Element 1</li> <li>Element 2</li> <li>Element 3</li> </ul> My blog doesn t…
Oct 7, 2020 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Oct 2, 2020 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Oct 2, 2020 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Jul 31, 2020 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Jul 24, 2020 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Jul 17, 2020 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Jun 30, 2020 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
May 6, 2020
My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Apr 19, 2020 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Mar 20, 2020 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Mar 10, 2020 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Jan 29, 2020 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Jan 22, 2020 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Jan 14, 2020 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Dec 12, 2019 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Dec 4, 2019 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Nov 27, 2019 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Nov 13, 2019 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Nov 5, 2019 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Oct 29, 2019
My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Sep 25, 2019 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Aug 21, 2019 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Jul 24, 2019 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Jul 19, 2019 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Jul 19, 2019 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Jun 13, 2019 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
May 23, 2019 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
May 22, 2019 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
May 22, 2019 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Mar 18, 2019 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Feb 19, 2019 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Feb 14, 2019 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Feb 11, 2019 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Feb 7, 2019 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Jan 29, 2019 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Jan 27, 2019 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Jan 26, 2019 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Jan 25, 2019 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Jan 24, 2019 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Jan 23, 2019 My blog doesn t support comments yet, but you can reply via blog@matuzo.at .
Jan 22, 2019
← Prev ✦ Random Next → Visit ↗ Feed Kagi ↗