How text-replace property work in css?

Viewed 11782

I was taking a test in upwork. There I got the following question:

Consider the following code:

body{text-replace: "a" "b" "b" "c"}

What will be the output of the following string if the text replace style is implemented?

andy lives behind cafe


  1. ndy lives behind cbfe
  2. cndy lives cehind ccfe
  3. andy lives behind cafe
  4. andy lives cehind bafe

I couldn't find any reference for the text-replace property in css.

1 Answers
Related