# elementor/3.29.0-dev4/core/settings/base/css-model.php

Elementor Website Builder – more than just a page builder, version 3.29.0-dev4. 22 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.29.0-dev4/code/core/settings/base/css-model.php
- Raw: https://pluginprobe.com/plugins/elementor/3.29.0-dev4/raw/core/settings/base/css-model.php
- Modified: 2025-03-17T13:28:54+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/elementor/3.29.0-dev4/code/core/settings/base/css-model.php#L10-L20`.

```php
<?php

namespace Elementor\Core\Settings\Base;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

abstract class CSS_Model extends Model {

	/**
	 * Get CSS wrapper selector.
	 *
	 * Retrieve the wrapper selector for the current panel.
	 *
	 * @since 1.6.0
	 * @access public
	 * @abstract
	 */
	abstract public function get_css_wrapper_selector();
}

```
