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

Examples

Set margin left style using fluent interface

use function Thermage\anchor;
use function Thermage\render;

// ...

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

Set margin left style using magic method fluent interface

use function Thermage\anchor;
use function Thermage\render;

// ...

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

Set margin left style using magic classes pipeline

use function Thermage\anchor;
use function Thermage\render;

// ...

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