You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
252 B

3 months ago
  1. nav {
  2. background-color: black;
  3. color: azure;
  4. p {
  5. background-color: aqua;
  6. }
  7. p:hover {
  8. background-color: blueviolet;
  9. }
  10. &:hover p {
  11. background-color: yellow;
  12. }
  13. }
  14. p {
  15. background-color: red;
  16. }