image-rendering
image-rendering
The image-rendering property defines how the browser should render an image if it is scaled up or down from its […]
img { image-rendering: pixelated; }
Continue Reading
isolation
isolation
The isolation property in CSS is used to prevent elements from blending with their backdrops. It is most commonly used […]
.element { isolation: isolate; }
Continue Reading
initial-letter
initial-letter
initial-letter is a CSS property that selects the first letter of the element where it is applied and specifies the […]
.element { initial-letter: 2; }
Continue Reading
inset
inset
The inset property in CSS is a shorthand for the four inset properties, top, right, bottom and left in one […]
.box { inset: 10px 20px 30px 40px; position: relative; }
Continue Reading
inline-size
inline-size
inline-size is a logical property that defines the width of an element when the writing-mode is horizontal, or the height […]
.element { inline-size: 700px; }
Continue Reading
interpolate-size
interpolate-size
The interpolate-size property in CSS allows us to transition an element from a certain length to its intrinsic size. Without […]
:root { interpolate-size: allow-keywords; }
Continue Reading