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

Examples

Set margin bottom style using fluent interface

use function Thermage\paragraph;
use function Thermage\render;

// ...

render( 
  paragraph('Stay RAD!')->mb(10)->bg('red')
);

Set margin bottom style using magic method fluent interface

use function Thermage\paragraph;
use function Thermage\render;

// ...

render( 
  paragraph('Stay RAD!')->mb10()->bgRed()
);

Set margin bottom style using magic classes pipeline

use function Thermage\paragraph;
use function Thermage\render;

// ...

render( 
  paragraph('Stay RAD!', 'mb-10 bg-red')
);
Terminal
$ php thermage.php
Stay RAD!

Getting Started

Methods