12 lines
179 B
CSS
12 lines
179 B
CSS
h1#title::after {
|
|
content: "This is the title of this tycker!";
|
|
}
|
|
|
|
div#footer::after {
|
|
content: "This tycker contains news from FOO BAR.";
|
|
}
|
|
|
|
div#footer {
|
|
font-size: small;
|
|
}
|
|
|