Across
- 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.
- 10. A custom CSS property that defines a value.
- 12. A scoring system that resolves more complex CSS conflicts to determine what style declarations apply to an element.
- 14. Specifies a color using the rgb(red, green, blue) function by indicating the red, green, and blue intensities.
- 17. Part of a CSS rule that contains one or more declarations separated by semicolons.
- 20. Contains the content box and add a transparent area around the content.
- 21. Contains the padded content and adds an optionally colored area around the padding.
- 22. Describes the size of each HTML element as a series of nested boxes.
- 26. A size that is fixed and independent of other CSS sizes.
- 29. Specified a color using the hsl(hue, saturation, lightness) function by indicating the hue, saturation, and lightness values.
- 30. CSS rules placed in an HTML document's <head>...</head> using a <style>...</style> element.
- 31. Specifies the HTML elements to which the specific style rule applies.
- 34. Consist of physical measurements that are fixed, meaning they are not related to other properties.
- 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.
- 38. CSS rules placed in a separate file (ex. style.css) that is imported into an HTML document with a <link> element.
- 39. Contains all three boxes of the box model and adds a transparent area around the border.
- 40. Define a length based on another relative length property like font parent or size of a viewport.
- 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.
- 42. Controls the layout of the element on a web page. Values include inline, block, none, inline-block, and list-item.
- 43. A CSS selector, specified using an asterisk (*), that matches ALL HTML elements in a web page.
- 44. A CSS selector, specified with two colon characters (::) followed by a pseudo-element, that matches parts of HTML elements.
- 45. A CSS selector, specified using a comma (,) to separate selectors, that matches all listed HTML elements to apply a style rule.
Down
- 1. A CSS rule that may be used on a style declaration to override other declarations and disregard specificity.
- 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. Used to stop HTML elements from floating.
- 5. A CSS selector that matches HTML elements with the specified element names.
- 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.
- 7. A shorthand CSS property for setting several of the HTML element's background properties at the same time.
- 8. Specifies the background image of an HTML element.
- 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.
- 11. Specifies the background color of an HTML element.
- 13. CSS declaration placed inside a HTML tag's style attribute.
- 15. A collection of CSS properties that control the font properties for displaying text.
- 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.
- 18. A CSS property that changes the text color to a specified color value.
- 19. A concept where the style declarations from a parent element are applied to any child elements.
- 23. A CSS selector, specified with a hash character (#) followed by the ID name, that matches the HTML element that has the specified ID.
- 24. Innermost box containing the content of the HTML element, such as text and images.
- 25. A size that is relative to another size.
- 27. CSS selectors that match specific relationships between two selectors. (ex. descendant, child, adjacent sibling, and general sibling selectors)
- 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.
- 32. Used to define the page element length like font-size, height, width, and border, among other properties.
- 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.
- 36. A CSS property followed by a colon (:) and the property value.
- 37. A CSS selector, specified with a period (.) followed by the class name, that matches HTML elements that have the specified class name.
