1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- *{
- box-sizing: border-box;
- }
-
- blockquote {
- color: green;
- }
- cite > a {
- text-decoration: none;
- }
- cite > a:hover {
- cursor: pointer;
- text-decoration: underline;
- }
- a:active {
- background-color: yellow;
- }
- a[href^='https://'] {
- color: red;
- }
- ul ~ p {
- font-size: 26px;
- }
- .list > li:last-child {
- background-color: blue;
- }
- .text-box h3:first-child {
- color:pink;
- }
- #greycol {
- color:grey;
- }
- div p:only-child {
- color:red;
- }
- .text-box p:nth-child(7){
- color: green;
- }
- .yellow {
- color: yellow;
- }
|