CSS Fundamentals

123456789101112131415161718192021222324252627282930313233343536373839404142434445
Across
  1. 4. Specifies a color using the #RRGGBB format by indicating the red, green, and blue intensities. Each intensity is between 00 and FF hexadecimal numbers.
  2. 10. A custom CSS property that defines a value.
  3. 12. A scoring system that resolves more complex CSS conflicts to determine what style declarations apply to an element.
  4. 14. Specifies a color using the rgb(red, green, blue) function by indicating the red, green, and blue intensities.
  5. 17. Part of a CSS rule that contains one or more declarations separated by semicolons.
  6. 20. Contains the content box and add a transparent area around the content.
  7. 21. Contains the padded content and adds an optionally colored area around the padding.
  8. 22. Describes the size of each HTML element as a series of nested boxes.
  9. 26. A size that is fixed and independent of other CSS sizes.
  10. 29. Specified a color using the hsl(hue, saturation, lightness) function by indicating the hue, saturation, and lightness values.
  11. 30. CSS rules placed in an HTML document's <head>...</head> using a <style>...</style> element.
  12. 31. Specifies the HTML elements to which the specific style rule applies.
  13. 34. Consist of physical measurements that are fixed, meaning they are not related to other properties.
  14. 35. A CSS selector, specified with an attribute name and optional value comparison enclosed in square brackets ([ and ]), that matches HTML elements with the specified attribute or the specified attribute and value.
  15. 38. CSS rules placed in a separate file (ex. style.css) that is imported into an HTML document with a <link> element.
  16. 39. Contains all three boxes of the box model and adds a transparent area around the border.
  17. 40. Define a length based on another relative length property like font parent or size of a viewport.
  18. 41. Specifies whether the HTML element will float to the right or left of the element's parent container, allowing text to flow around the element.
  19. 42. Controls the layout of the element on a web page. Values include inline, block, none, inline-block, and list-item.
  20. 43. A CSS selector, specified using an asterisk (*), that matches ALL HTML elements in a web page.
  21. 44. A CSS selector, specified with two colon characters (::) followed by a pseudo-element, that matches parts of HTML elements.
  22. 45. A CSS selector, specified using a comma (,) to separate selectors, that matches all listed HTML elements to apply a style rule.
Down
  1. 1. A CSS rule that may be used on a style declaration to override other declarations and disregard specificity.
  2. 2. A CSS selector, specified using a tilde character (~) between two selectors, that matches the second HTML element if the second element occurs after the first element and both elements are siblings.
  3. 3. Used to stop HTML elements from floating.
  4. 5. A CSS selector that matches HTML elements with the specified element names.
  5. 6. A CSS selector, specified using a plus character (+) between two selectors, that matches an HTML element that immediately follows another element, where both elements have the same parent.
  6. 7. A shorthand CSS property for setting several of the HTML element's background properties at the same time.
  7. 8. Specifies the background image of an HTML element.
  8. 9. A CSS selector, specified with a selector followed by a space and another selector, that matches HTML elements that are contained in other elements.
  9. 11. Specifies the background color of an HTML element.
  10. 13. CSS declaration placed inside a HTML tag's style attribute.
  11. 15. A collection of CSS properties that control the font properties for displaying text.
  12. 16. Specifies a color using the rgba(red, green, blue, alpha) function by indicating the red, green, blue, and alpha intensities. Alpha of 0 (zero) means fully transparent, 1 (one) means fully opaque.
  13. 18. A CSS property that changes the text color to a specified color value.
  14. 19. A concept where the style declarations from a parent element are applied to any child elements.
  15. 23. A CSS selector, specified with a hash character (#) followed by the ID name, that matches the HTML element that has the specified ID.
  16. 24. Innermost box containing the content of the HTML element, such as text and images.
  17. 25. A size that is relative to another size.
  18. 27. CSS selectors that match specific relationships between two selectors. (ex. descendant, child, adjacent sibling, and general sibling selectors)
  19. 28. A CSS selector, specified with a colon character (:) following by a pseudo-class name, that matches HTML elements based on user behavior or element metainformation.
  20. 32. Used to define the page element length like font-size, height, width, and border, among other properties.
  21. 33. A CSS selector, specified using a greater-than character (>) between two selectors, that matches any HTML elements where the second element is a direct child of the first element.
  22. 36. A CSS property followed by a colon (:) and the property value.
  23. 37. A CSS selector, specified with a period (.) followed by the class name, that matches HTML elements that have the specified class name.