19 lines
172 B
CSS
19 lines
172 B
CSS
h1 {
|
|
text-color: "red";
|
|
}
|
|
|
|
/* PHP code, invalid in CSS context */
|
|
for()
|
|
|
|
<?php echo("hello");
|
|
|
|
// valid code in PHP context
|
|
for()
|
|
|
|
?>
|
|
|
|
h2 {
|
|
text-weight: bold;
|
|
}
|
|
|