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

Examples

Set padding left style using fluent interface

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

// ...

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

Set padding left style using magic method fluent interface

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

// ...

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

Set padding left style using magic classes pipeline

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

// ...

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