/**
 * Set Span element margin right style.
 *
 * @param int $value Span margin right.
 *
 * @return self Returns instance of the Span element class.
 *
 * @access public
 */
public function mr(int $value): self

Examples

Set margin right style using fluent interface

render( 
  span('Stay RAD!')->mr(10)
);

Set margin right style using magic method fluent interface

render( 
  span('Stay RAD!')->mr10()
);

Set margin right style using magic classes pipeline

render( 
  span('Stay RAD!', 'mr-10')
);

Set margin right style using shortcodes

render( 
  span('[mr=10]Stay RAD![/mr]')
);
Terminal
$ php thermage.php
Stay RAD!