Genies Hour (10) CSS - Multiple Backgrounds Know CSS Multiple Backgrounds Properties background-size background-origin background-clip What I have learned? Property Description background A shorthand property for setting all the background properties in one declaration background-clip Specifies the painting area of the background background-image Specifies one or more background images for an element background-origin Specifies where the background image(s) is/are positioned background-size Specifies the size of the background image(s) What problem do I foresee happening? It is still quiet hard for me to remember the mixed form of background. background:color url()...
Posts
Showing posts from May, 2018
- Get link
- X
- Other Apps
Genies Hour (9) CSS Symbol Know CSS Form Properties HTML entities were described in the previous chapter. Many mathematical, technical, and currency symbols, are not present on a normal keyboard. To add such symbols to an HTML page, you can use an HTML entity name. If no entity name exists, you can use an entity number, a decimal, or hexadecimal reference. What I have learned Char Number Entity Description ∀ ∀ ∀ FOR ALL ∂ ∂ ∂ PARTIAL DIFFERENTIAL ∃ ∃ ∃ THERE EXISTS ∅ ∅ ∅ EMPTY SETS ∇ ∇ ∇ NABLA ∈ ∈ ∈ ELEMENT OF ∉ ∉ ∉ NOT AN ELEMENT OF ∋ ∋ ∋ CONTAINS AS MEMBER ∏ ∏ ∏...
- Get link
- X
- Other Apps
Genies Hour (8) CSS Layout - transition Know CSS transition Properties CSS transitions allows you to change property values smoothly (from one value to another), over a given duration. Example: Mouse over the element below to see a CSS transition effect. What I have learned Property Description transition A shorthand property for setting the four transition properties into a single property transition-delay Specifies a delay (in seconds) for the transition effect transition-duration Specifies how many seconds or milliseconds a transition effect takes to complete transition-property Specifies the name of the CSS property the transition effect is for transition-timing-function Specifies the speed curve of the transition effect ...