oxy_uppercase() Function

This function transforms to upper case the text received as argument.

oxy_uppercase( text )

text
The text to be capitalized.

To insert as static text content before each element its upper-cased qualified name, use this CSS selector:

*:before{
  content: oxy_uppercase(oxy_name()) ": ";
}

Was this helpful?