Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

README.md 933B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # named-grid-areas-no-invalid
  2. Disallow invalid named grid areas.
  3. <!-- prettier-ignore -->
  4. ```css
  5. a { grid-template-areas:
  6. "a a a"
  7. "b b b"; }
  8. /** ↑
  9. * This named grid area */
  10. ```
  11. For a named grid area to be valid, all strings must define:
  12. - the same number of cell tokens
  13. - at least one cell token
  14. And all named grid areas that spans multiple grid cells must form a single filled-in rectangle.
  15. ## Options
  16. ### `true`
  17. The following patterns are considered violations:
  18. <!-- prettier-ignore -->
  19. ```css
  20. a { grid-template-areas: "" }
  21. ```
  22. <!-- prettier-ignore -->
  23. ```css
  24. a { grid-template-areas: "a a a"
  25. "b b b b"; }
  26. ```
  27. <!-- prettier-ignore -->
  28. ```css
  29. a { grid-template-areas: "a a a"
  30. "b b a"; }
  31. ```
  32. The following pattern is _not_ considered a violation:
  33. <!-- prettier-ignore -->
  34. ```css
  35. a { grid-template-areas: "a a a"
  36. "b b b"; }
  37. ```