- …
Excerpts from TIL - Manuel Matuzovic by Manuel Matuzović:
A blog about web development, HTML, CSS, JavaScript, and web accessibility.
TIL
You can style the file selector button of file upload elements.
TIL
You can use the :scope pseudo class to select direct children of an element with `.querySelectorAll()`.
TIL
console.count() logs the number of times that this particular call to count() has been called.
TIL
You can link to multiple e-mail addresses
TIL
You can use the spellcheck attribute to instruct browsers that, if possible, an element should or should not be checked for spelling errors.
TIL
You can animate z-index.
TIL
You can make a link in an iframe open in its parent window, if you set target=“_parent”.
TIL
Adding an i (or I) before the closing bracket in an attribute selector causes the value to be compared case-insensitively.
TIL
ol and ul accept the type attribute. You can use it to set a different numbering type in HTML.
TIL
The order in which transform functions in the transform shorthand property are defined matters.
TIL
You can use the nomodule attribute to run JavaScript code only in browsers that don’t support JS modules.
TIL
Using the background-origin property you can position background images relative to the inner border edge (default), outer border edge, or the content edge.
TIL
You can add the option { once: true } to an event listener to automatically remove it when has been invoked
TIL
The nullish coalescing operator (??) only returns its right-hand side operand when its left-hand side operand is null or undefined.
TIL
Optional chaining allows you to chain methods or properties, and conditionally continue down the chain if the value is not null or undefined.
TIL
You can use the removeProperty method to remove a specific inline CSS property defined in the style attribute.
TIL
There’s a space-separated syntax for values in functional color notations.
TIL
JSON.stringify takes 3 parameters. The third parameter can be used to pretty-print the output.
TIL
There’s native, CSS-only smooth scrolling.
TIL
You can target Inverted Colors Mode mode in CSS
TIL
You can use JavaScript (Vibration API) to vibrate devices
TIL
You can disable all form elements in a fieldset by setting the disabled attribute on the fieldset.
TIL
You can list all pseudo elements of an element in the CSS pane in Firefox Developer Tools.
TIL
You can emulate dark mode and reduced motion in Chrome Dev Tools.
TIL
You can instruct browsers to print pages in landscape orientation (Chrome/Opera only).
TIL
You can change the filename of a downloadable file by defining a value in the download attribute.
TIL
The bullet or number of a list-item can be selected and styled with the ::marker pseudo-element.
TIL
If an input element has the attribute value autocomplete=“new-password”, browsers can suggest securely-generated passwords.
TIL
You can use the CSS Paint API to create background images in CSS.
TIL
You can search the elements panel in Developer Tools not only for strings but also selectors.
TIL
The webkitdirectory attribute allows users to select directories instead of files. (desktop browsers only)
TIL
It’s possible to identify how many separate fingers are touching the screen.
TIL
You can do responsive preloading because preload link elements accept the media attribute like any other link element.
TIL
SVGs are focusable in Internet Explorer. We can set focusable=“false” to prevent that.
TIL
macOS uses Papyrus as the default font when you define the generic font family “fantasy”.
TIL
text-decoration doesn’t have to be a solid line. There’s also dotted, dashed, double, and wavy.
TIL
text-decoration is a shorthand property for text-decoration-line, text-decoration-color, and text-decoration-style.
TIL
Overflowing block-level elements with overflow set to scroll or auto are focusable in Firefox.
TIL
You can use conditional comments to target specific versions of Outlook.
TIL
You can turn the outline of an element to the _inside_ by setting the outline-offset property to a negative value. (Not supported in IE)
You can center a flex-item vertically and horizontally by applying margin: auto; to it.
TIL
If you press CMD/Ctrl and click on a property or property value in the style panel, @ChromeDevTools jumps directly to the respective css/scss file and line.
TIL
About the @at-root directive. It moves nested styles out from within a parent selector or nested directive.
TIL
IE 11 requires a unit to be added to the third argument (flex-basis) of the flex property.
TIL
You can use `navigator.connection` to get information about the connection like round-trip time, bandwidth, connection type (e.g. 3g, 4g) or if Data-Saver is enabled.
TIL
The grid-auto-flow property takes up to two values. row, column, dense, row dense, or column dense.
TIL
You can pass an `options` object, which only has a single property, to the `focus()` method to prevent scrolling on focus.
TIL
There’s a tab-size property. It controls the width of the tab (U+0009) character.
TIL
How to get a random background-color (or any other value) each time I compile Sass.