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

Examples

Set margin right style using fluent interface

render(
  anchor('Thermage')->href('https://awilum.github.io/thermage/')->mr(10)
);

Set margin right style using magic method fluent interface

render(
  anchor('Thermage')->href('https://awilum.github.io/thermage/')->mr10()
);

Set margin right style using magic classes pipeline

render(
  anchor('Thermage', 'mr-10')->href('https://awilum.github.io/thermage/')
);
Terminal
$ php thermage.php