开发者 | qlstudio |
---|---|
更新时间 | 2016年1月17日 20:07 |
PHP版本: | 3.2 及以上 |
WordPress版本: | 4.4.1 |
版权: | GPLv2 |
browsers
directory to the /wp-content/plugins/
directoryTo add extra stylesheets, create a new CSS file and upload it to the root of your active theme or in the directory THEME/library/css/ - you can include a mixture of 3 values:
The Browsers plugin adds a collection of extra browser and operating system specific classes to the HTML <body> tag of all front-end pages of the current active theme. The best way to find out what classes are added is to use a source code inspector like Google Chrome's Inspector to view the <body> tag. You can then use these new classes to select HTML elements in the following way ( again using IE 10 as an example ): ~~ style.css ~~ body.browsers-msie-10 { background-color: red; } ```
First release. ```