2024-04-27

TIL CSS paint-order

/* order: stroke -> fill */
paint-order: stroke fill;
export function TextWithPaintOrder({ text }) {
  const styles = {
    WebkitTextStrokeColor: "black",
    WebkitTextStrokeWidth: "3px",
    paintOrder: "stroke fill",
  }
 
  return (
    <div
      className="text-center text-6xl font-bold 
    text-amber-500"
      style={styles}
    >
      {text}
    </div>
  )
}

mdn