/**
 * Set Span element display style.
 *
 * @param string $value Span display value.
 *
 * @return self Returns instance of the Span element class.
 *
 * @access public
 */
public function d(string $value): self
Examples
Set Span element display using magic method fluent interface
use function Thermage\span;
use function Thermage\render;
// ...
render (
  span('Stay RAD!')
    ->px20()
    ->mx20()
    ->colorGreen()
    ->bgPurple()
    ->bold()
    ->dBlock()
);
Set Span element width using magic classes pipeline
use function Thermage\span;
use function Thermage\render;
// ...
render( 
  span('Stay RAD!', 'px-20 mx-20 color-green bg-purple bold d-block')
);
Terminal
  $ php thermage.php
    Stay RAD!
  By default Span element display state is inline, but you can change it to block or none.
Getting Started
Methods
- bg Set Span element background color style.
- blink Set Span element blink style.
- bold Set Span element bold style.
- color Set Span element text color style.
- d Set Span element display style.
- dim Set Span element dim style.
- display Set Span element display style.
- getShortcodes Get Span element shortcodes instance.
- getTheme Get Span element theme.
- getValue Get Span element value.
- invisible Set Span element invisible style.
- italic Set Span element italic style.
- ml Set Span margin left style.
- mr Set Span margin right style.
- mx Set Span margin both style.
- pl Set Span padding left style.
- pr Set Span padding right style.
- px Set Span padding both style.
- render Render Span element.
- reverse Set Span element reverse property.
- setShortcodes Set Span element shortcodes instance.
- setTheme Set Span element theme instance.
- strikethrough Set Span element strikethrough style.
- underline Set Span element underline style.
- value Set Span element value.