public function GridBuilderInterface::getGridCss in Grid builder 8
Generates grid CSS for this grid system.
Parameters
(string) $wrapper_selector: (optional) Wrapper CSS selector to use to scope the CSS.
(string) $col_selector_prefix: (optional) Column selector prefix to scope the CSS.
(boolean) $skip_spacing: Whether we should skip including spacing in the output. Useful for tight layout demonstration presentation.
Return value
string Grid CSS for this grid system.
1 method overrides GridBuilderInterface::getGridCss()
- EqualColumnGrid::getGridCss in lib/
Drupal/ gridbuilder/ Plugin/ gridbuilder/ gridbuilder/ EqualColumnGrid.php - Implements Drupal\gridbuilder\Plugin\GridBuilderInterface::getGridCss().
File
- lib/
Drupal/ gridbuilder/ Plugin/ GridBuilderInterface.php, line 29 - Definition of Drupal\gridbuilder\Plugin\GridBuilderInterface.
Class
- GridBuilderInterface
- Defines the shared interface for all gridbuilder plugins.
Namespace
Drupal\gridbuilder\PluginCode
public function getGridCss($wrapper_selector = NULL, $col_selector_prefix = NULL, $skip_spacing = FALSE);