oxy_lowercase() Function

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

oxy_lowercase( text )

text
The text to be lower cased.

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

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

Was this helpful?