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
CSS3 properties: box-shadow
Applies shadows to edges of elements to create visual depth
CSS3 properties: opacity
Specifies transparency for an HTML element
CSS3 properties: resize
Defines whether an element can be resized by the user and how it can be resized
CSS3 properties: text-overflow
Cuts off, or clips, text that extends beyond its container
CSS3 properties: text-shadow
Applies shadows to edges of text characters to create visual depth
CSS3 optional font properties: font-stretch
Specifies how the font should be stretched or spaced
CSS3 optional font properties: font-style
Specifies how the font should be styled, basically vertical or slanted
CSS3 optional font properties: font-weight
Specifies the weight or thickness of each character in the font
CSS3 optional font properties: unicode-range
Specifies the range of UNICODE characters that should be downloaded for the font, based on availability
CSS3 Text Effects: hanging-punctuation
Specifies whether (and how) punctuation characters can appear outside the line box at the beginning or end of a full line of text
CSS3 Text Effects: punctuation-trim
Specifies whether (and how) punctuation characters can be trimmed or sized when they appear at the beginning or end of a line
CSS3 Text Effects: text-align-last
Specifies a justification style for the last line in a text block whose text-align property is set to “justify”
CSS3 Text Effects: text-emphasis
Applies emphasis style and color to an element’s text in a single declaration
CSS3 Text Effects: text-justify
Specifies a justification style for text whose text-align property is set to “justify”
CSS3 Text Effects: text-outline
Creates outlined characters for text
CSS3 Text Effects: text-shadow
Applies a shadow effect behind text characters
CSS3 Text Effects: text-wrap
Specifies whether lines of text in a text area can break, and where a line can be broken
CSS3 Text Effects: word-break
Specifies whether lines of text in a text area can break, and where a line can be broken
CSS3 Text Effects: word-wrap
Specifies that long words in a text area may be broken without a hyphen and wrap to the next line
CSS3 Text Effects: text-overflow
Specifies whether text that overflows the containing element should be clipped or indicated with an ellipsis
@font-face
CSS3 rule that defines any font desired by a Web designer; the font library is hosted on the Web server.
CSS declaration
In a style sheet, a property and a value applied to format a specified HTML element (selector). A declaration combined with a selector is a CSS rule.
CSS selector
In a style sheet, any HTML element to which designated styles are applied.
opacity
The amount of transparency in an element’s appearance. Can be specified for various elements and properties using CSS.