thanks for mitrii/yii2-embedjs, (*1)
Yii2 embed Css
Embed Css with IDE checking or intellisense, (*2)
Installation
The preferred way to install this extension is through composer., (*3)
Either run, (*4)
php composer.phar require --prefer-dist shqear/yii2-embedcss "*"
or add, (*5)
"shqear/yii2-embedcss": "*"
to the require section of your composer.json
file., (*6)
Usage
Once the extension is installed, simply use it in your code by :, (*7)
<?php \shqear\widgets\EmbedCss::begin(); ?>
<style type="text/css">
html { background: red; }
</style>
<?php \shqear\widgets\EmbedCss::end(); ?>
Or with 'depends' option, (*8)
<?php \shqear\widgets\EmbedCss::begin(['depends' => '\yii\web\JqueryAsset']); ?>
<style>
html { background: red; }
</style>
<?php \shqear\widgets\EmbedCss::end(); ?>