zadanie3.css 220 B

123456789101112131415161718
  1. *{
  2. box-sizing: border-box;
  3. }
  4. .text-box h3:first-child {
  5. color:pink;
  6. }
  7. #greycol {
  8. color:grey;
  9. }
  10. div p:only-child {
  11. color:red;
  12. }
  13. .text-box p:nth-child(7){
  14. color: green;
  15. }
  16. .yellow {
  17. color: yellow;
  18. }