DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Make A Variable CSS
Page.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>Variable CSS</title> <link rel="stylesheet" type="text/css" href="style.php" /> </head> <body> <h1>Title</h1> <p class="color-1"> Text Text Text </p> <p class="color-2"> Text Text Text </p> <p class="color-3"> Text Text Text </p> </body> </html>
Style.php
<?php
header('Content-Type: text/css');
$color_0 = '#000000';
$color_1 = '#ff0000';
$color_2 = '#ff3300';
$color_3 = '#ff6600';
?>
* { font-family: sans-serif; }
h1 {
padding: 5px;
color: <?= $color_0 ?>;
border: 5px solid <?= $color_2 ?>;
background-color: <?= $color_3 ?>;
}
p.color-1 { color: <?= $color_1 ?>; }
p.color-2 { color: <?= $color_2 ?>; font-weight: bold; }
p.color-3 { color: <?= $color_3 ?>; font-style: italic; }
<a href="http://www.ab-d.fr">Source: Asselin Benoit Développement, création de site internet amiens</a>





