/**
 * Set Div element invisible style.
 *
 * @return self Returns instance of the Div element class.
 *
 * @access public
 */
public function invisible(): self

Examples

Set invisible style using fluent interface

use function Thermage\div;
use function Thermage\render;

// ...

render(
  div('Stay RAD!')->invisible()
);

Set invisible style using magic classes pipeline

use function Thermage\div;
use function Thermage\render;

// ...

render(
  div('Stay RAD!', 'invisible')
);

Set invisible style using shortcodes

use function Thermage\div;
use function Thermage\render;

// ...

render(
  div('[invisible]Stay RAD![/invisible]')
);