Articles by

Sunkanmi Fafowora

Direct link to the article lch()

lch()

The lch() color function specifies colors in the CIELAB color space. Unlike the lab() function — which uses Cartesian coordinates — the lch() function uses polar coordinates to set color in terms of its hue and chroma, which is generally more intuitive.
Direct link to the article hsl()

hsl()

The CSS hsl() function represents color in the sRGB color space and displays it according to its hue, saturation, and lightness. We provide a value for each of those three channels to produce a color.

.element {
  color: hsl(90deg, 50%, 
Direct link to the article rgb()

rgb()

The CSS rgb() color function represents color in the sRGB color space specifying their redness (r), greenness (g), and blueness (b), and an optional transparency value.
Direct link to the article border-image-outset

border-image-outset

The CSS border-image-outset property sets distance between an element’s border-image area and how far it goes beyond the element’s border-box.

.container {
  border-style: ridge;
  border-width: 3rem;
  border-image-source: url('path/to/image.jpg');
  border-image-slice: 70; 
  border-image-width: 40%; 
  border-image-repeat: repeat;
  border-image-outset: 2;
}