diff --git a/_includes/collections/backgrounds.html b/_includes/collections/backgrounds.html
index 76dc8ed3..c2083309 100644
--- a/_includes/collections/backgrounds.html
+++ b/_includes/collections/backgrounds.html
@@ -1 +1 @@
- Defines how the background image will behave when scrolling the page. The background image will scroll with the page. It will also position and resize itself according to the element it's applied to. The background image will not scroll with the page, and remain positioned according to the viewport. It will also position and resize itself according to the viewport. As a result, the background image will probably only be partially visible. Defines how far the background should extend within the element. The background extends completely throughout the element, even under the border. The background only extends to the edge of the border: it includes the padding but not the border. The background only extends to the edge of the content: it doesn't include the padding, nor the border. Defines the color of the element's background. By default, the background color is transparent, basically meaning that there is no background color. You can use one of the 140+ color names. You can use hexadecimal color codes. You can use rgb() color codes: Each of them can have a value between 0 and 255. You can use rgba() color codes: The alpha value can go from zero 0 (transparent) to one 1 (opaque). You can use hsl() color codes: You can use hsl()a color codes: The alpha value can go from zero 0 (transparent) to one 1 (opaque). Defines an image as the background of the element. Removes any background image. Uses the image defined in the url path. This path can either be relative (to the css file) or absolute (like You can define a linear gradient as the background image. You need to define at least two colors. The first one will start at the top, the second one at the bottom. The default angle is You can specify an angle, either in degrees, or with keywords. When using degress, you specify the direction of the gradient, or when it ends. So In this example, You can define a radial gradient as the background image. You need to define at least two colors. The first one will be at the center, the second one at the edges. You can specify the shape of the radial gradient: circle or ellipse (default). You can specify color stops using percentage values. You can specify where the gradient should end: Like with the Defines the origin of the background image. The background image starts at the edge of the border: within padding but not the border. The background image starts under the border. The background image only starts at the edge of the content: it doesn't include the padding, nor the border. Defines the position of the background image. The background image will be positioned at 0% on the horizontal axis and 0% on the vertical axis, which means the top left corner of the element. You can use a combination of position keywords: The background image will be positioned in the center of the element. Defines how the background image repeats itself across the element's background, starting from the background position. The background image will repeat itself both horizontally and vertically. The background image will only repeat itself horizontally. The background image will only repeat itself vertically. The background image will only appear once. Defines the size of the background image. The background image will retain its original size. For example, this background image is 960px by 640px large. Its aspect ratio is 3 by 2. It's bigger than its container (which is 150px high) and will thus be clipped. You can specify a size in pixels: You can use percentage values as well. Beware that this can alter the aspect ratio of the background image, and lead to unexpected results. The keyword The keyword Shorthand property for Defines how the background image will behave when scrolling the page. The background image will scroll with the page. It will also position and resize itself according to the element it's applied to. The background image will not scroll with the page, and remain positioned according to the viewport. It will also position and resize itself according to the viewport. As a result, the background image will probably only be partially visible. Defines how far the background should extend within the element. The background extends completely throughout the element, even under the border. The background only extends to the edge of the border: it includes the padding but not the border. The background only extends to the edge of the content: it doesn't include the padding, nor the border. Defines the color of the element's background. By default, the background color is transparent, basically meaning that there is no background color. You can use one of the 140+ color names. You can use hexadecimal color codes. You can use rgb() color codes: Each of them can have a value between 0 and 255. You can use rgba() color codes: The alpha value can go from zero 0 (transparent) to one 1 (opaque). You can use hsl() color codes: You can use hsla() color codes: The alpha value can go from zero 0 (transparent) to one 1 (opaque). Defines an image as the background of the element. Removes any background image. Uses the image defined in the url path. This path can either be relative (to the css file) or absolute (like You can define a linear gradient as the background image. You need to define at least two colors. The first one will start at the top, the second one at the bottom. The default angle is You can specify an angle, either in degrees, or with keywords. When using degress, you specify the direction of the gradient, or when it ends. So In this example, You can define a radial gradient as the background image. You need to define at least two colors. The first one will be at the center, the second one at the edges. You can specify the shape of the radial gradient: circle or ellipse (default). You can specify color stops using percentage values. You can specify where the gradient should end: Like with the Defines the origin of the background image. The background image starts at the edge of the border: within padding but not the border. The background image starts under the border. The background image only starts at the edge of the content: it doesn't include the padding, nor the border. Defines the position of the background image. The background image will be positioned at 0% on the horizontal axis and 0% on the vertical axis, which means the top left corner of the element. You can use a combination of position keywords: The background image will be positioned in the center of the element. Defines how the background image repeats itself across the element's background, starting from the background position. The background image will repeat itself both horizontally and vertically. The background image will only repeat itself horizontally. The background image will only repeat itself vertically. The background image will only appear once. Defines the size of the background image. The background image will retain its original size. For example, this background image is 960px by 640px large. Its aspect ratio is 3 by 2. It's bigger than its container (which is 150px high) and will thus be clipped. You can specify a size in pixels: You can use percentage values as well. Beware that this can alter the aspect ratio of the background image, and lead to unexpected results. The keyword The keyword Shorthand property for #background-attachment
default background-attachment: scroll;background-attachment: fixed;#background-clip
default background-clip: border-box;background-clip: padding-box;background-clip: content-box;#background-color
default background-color: transparent;background-color: red;background-color: #05ffb0;background-color: rgb(50, 115, 220);redgreenbluebackground-color: rgba(50, 115, 220, 0.3);rgbalpha channel and defines the opacity of the colorbackground-color: hsl(14, 100%, 53%);hue and can go from 0 to 359saturation and go from 0% to 100%luminosity and go from 0% to 100%background-color: hsla(14, 100%, 53%, 0.6);hslalpha channel and defines the opacity of the color#background-image
default background-image: none;background-image: url(/images/jt.png);http://cssreference.io/images/jt.png).background-image: linear-gradient(red, blue);to bottom (or 180deg), which means the gradient is vertical, starting at the top, ending at the bottom of the element.background-image: linear-gradient(45deg, red, blue);0deg means the the top of the element, like 12:00 on a clock.45deg means 2:30, or the top right corner.background-image: radial-gradient(green, purple);background-image: radial-gradient(circle, green, purple);background-image: radial-gradient(circle, green 0%, purple 20%, orange 100%);background-image: radial-gradient(circle closest-side, green 0%, purple 20%, orange 100%);closest-sideclosest-cornerfarthest-sidefarthest-cornerbackground-image: radial-gradient(circle closest-side at 45px 45px, green 0%, purple 20%, orange 100%);background-position, you can specify the position of the gradient.#background-origin
default background-origin: padding-box;background-origin: border-box;background-origin: content-box;#background-position
default background-position: 0% 0%;background-position: bottom right;center, top, bottom, left and right.background-position: center center;#background-repeat
default background-repeat: repeat;background-repeat: repeat-x;background-repeat: repeat-y;background-repeat: no-repeat;#background-size
default background-size: auto auto;background-size: 120px 80px;background-size: 100% 50%;background-size: contain;contain will resize the background image to make sure it remains fully visible.background-size: cover;cover will resize the background image to make sure the element is fully covered.#background
background-image background-position background-size background-repeat background-origin background-clip background-attachment and background-color.#background-attachment
default background-attachment: scroll;background-attachment: fixed;#background-clip
default background-clip: border-box;background-clip: padding-box;background-clip: content-box;#background-color
default background-color: transparent;background-color: red;background-color: #05ffb0;background-color: rgb(50, 115, 220);redgreenbluebackground-color: rgba(50, 115, 220, 0.3);rgbalpha channel and defines the opacity of the colorbackground-color: hsl(14, 100%, 53%);hue and can go from 0 to 359saturation and go from 0% to 100%luminosity and go from 0% to 100%background-color: hsla(14, 100%, 53%, 0.6);hslalpha channel and defines the opacity of the color#background-image
default background-image: none;background-image: url(/images/jt.png);http://cssreference.io/images/jt.png).background-image: linear-gradient(red, blue);to bottom (or 180deg), which means the gradient is vertical, starting at the top, ending at the bottom of the element.background-image: linear-gradient(45deg, red, blue);0deg means the the top of the element, like 12:00 on a clock.45deg means 2:30, or the top right corner.background-image: radial-gradient(green, purple);background-image: radial-gradient(circle, green, purple);background-image: radial-gradient(circle, green 0%, purple 20%, orange 100%);background-image: radial-gradient(circle closest-side, green 0%, purple 20%, orange 100%);closest-sideclosest-cornerfarthest-sidefarthest-cornerbackground-image: radial-gradient(circle closest-side at 45px 45px, green 0%, purple 20%, orange 100%);background-position, you can specify the position of the gradient.#background-origin
default background-origin: padding-box;background-origin: border-box;background-origin: content-box;#background-position
default background-position: 0% 0%;background-position: bottom right;center, top, bottom, left and right.background-position: center center;#background-repeat
default background-repeat: repeat;background-repeat: repeat-x;background-repeat: repeat-y;background-repeat: no-repeat;#background-size
default background-size: auto auto;background-size: 120px 80px;background-size: 100% 50%;background-size: contain;contain will resize the background image to make sure it remains fully visible.background-size: cover;cover will resize the background image to make sure the element is fully covered.#background
background-image background-position background-size background-repeat background-origin background-clip background-attachment and background-color.