18 lines
230 B
HTML
18 lines
230 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<title>Static CSS animation</title>
|
|
<style>
|
|
|
|
p {
|
|
color: blue;
|
|
}
|
|
|
|
p::after {
|
|
content: "(::after)";
|
|
}
|
|
|
|
p::before {
|
|
content: "(::before)";
|
|
}
|
|
</style>
|
|
<p>blue with animation support; olive without</p>
|