Skip to content

Instantly share code, notes, and snippets.

@GitaStreet
Forked from westonruter/css-variables-test.php
Created April 2, 2019 09:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GitaStreet/6591afd42f12234ccd67c368ed7d54f8 to your computer and use it in GitHub Desktop.
Save GitaStreet/6591afd42f12234ccd67c368ed7d54f8 to your computer and use it in GitHub Desktop.
<?php
/**
* Plugin Name: CSS Variables Test
*/
add_action(
'wp_head',
function() {
?>
<style>
:root {
--content-width: 640px;
}
body {
max-width: var(--content-width);
}
</style>
<?php
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment