12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- a:link { color: red; }
- a:visited { color: grey; }
- a:hover { color: blue; }
- a:active { background-color: yellow; }
- p::selection {
- color: #ff0;
- background: #000;
- }
- p::first-letter {
- font-family: "Times New Roman", Times, serif;
- font-size: 20px;
- color: red;
- }
- p:before {
- content: "";
- display: block;
- width: 100px;
- height: 100px;
- }
- blockquote::before {
- content: "\2728";
- }
- blockquote::after {
- content: "\2728";
- }
- blockquote::selection {
- color: #c8f7c5;
- background-color: #f9f0de;
- }
|