Using Advanced CSS3 Techniques Flashcards
CSS3 selectors: element[attribute$=value]
Selects every instance of a specified element whose specified attribute ends with the specified value
CSS3 selectors: element[attribute*=value]
Selects every instance of a specified element whose specified attribute contains the specified substring value
CSS3 selectors: element[attribute^=value]
Selects every instance of a specified element whose specified attribute begins with the specified value
CSS3 selectors: element:checked
Selects every checked instance of a specified element
CSS3 selectors: element:disabled
Selects every disabled instance of a specified element
CSS3 selectors: element:enabled
Selects every enabled instance of a specified element
CSS3 selectors: element:first-of-type
Selects every instance of a specified element that is the first of its parent
CSS3 selectors: element:last-of-type
Selects every instance of a specified element that is the last of its parent
CSS3 selectors: element1~element2
Selects every instance of element2 that is preceded by an instance of element1
CSS3 properties: background
Specifies all properties for the page background
Not a new property, but the option to use multiple background images is a new CSS3 feature
CSS3 properties: background-clip
Specifies the painting area of the background
Determines whether the background extends into the border or not
CSS3 properties: background-origin
Positions the background-image relative to an element’s border, padding or content
CSS3 properties: background-size
Defines the size of background images
CSS3 properties: border-image
Creates a border that uses an image instead of a line
CSS3 properties: border-radius
Defines the shape or curve of a border around an element
Used to create rounded corners in borders