mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
28 lines
522 B
HTML
28 lines
522 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
@charset "utf-8";
|
|
@namespace svg url(http://www.w3.org/2000/svg);
|
|
@font-face {
|
|
font-family: "Example Font";
|
|
src: url("./Dosis-Regular.ttf");
|
|
}
|
|
|
|
#fluffy {
|
|
border: 1px solid black;
|
|
z-index: 1;
|
|
/* -webkit-disabled-property: rgb(1, 2, 3) */
|
|
-lol-cats: "dogs" /* non-existing property */
|
|
}
|
|
|
|
@media (min-width: 1px) {
|
|
span {
|
|
-webkit-border-radius: 10px;
|
|
font-family: "Example Font";
|
|
animation: 1s identifier;
|
|
}
|
|
}
|
|
</style>
|
|
<div id="fluffy">woof!</div>
|
|
<span>fancy text</span>
|
|
|