Lessons 4-7 Flashcards
What is absolute positioning?
When an element is removed from its position to a geometric position, defined by its location to the sides of the display face.
Define block flow.
Display property which fills as much space as possible.
What is a bounding box?
Small rectangle which will fit to hold all letters and the background, which can be styled by CSS.
Define CSS.
Cascading Style Sheets, used to style, format and arrange elements within a webpage internally or externally.
Define the class attribute.
The class attribute specifies one or more classnames for an element. The class attribute is mostly used to point to a class in a style sheet.
What is CSS3?
Cascading Style Sheets Level 3 (CSS3) is the iteration of the CSS standard used in the styling and formatting of Web pages. Most recent and included in HTML5.
What is a declaration used for?
A property and value pair is called a declaration.
What is float positioning?
Useful for column layouts, float positioning moves an element as far as possible left or right. Text will wrap around a floating element.
What is the font attribute used for?
To select your desire style for your text. More specifically can use font-family to add fallback fonts.
What is the purpose of the font-family attribute?
The font-family property specifies the font for an element. It has a fallback system allowing you to provide backup fonts if your font style is not available. e.g font-family:verdana,trebuchet,arial,sans serif;
What is the hidden overflow value?
Overflow value which makes any content overflow invisible so not to leak onto the rest of the web page. This does cut off content when required.
What is the inline flow value?
Display property which only uses the amount of space required to fit the content.
What does the monospace value do?
A font property which makes all letters and characters have the same proportions.
Define sans serif.
Font styles that do not have caps on the letters. e.g. Arial.
What is the scrolling overflow value?
When an element overflows its box it automatically sets to a scroll bar so no overflow leaks onto the rest of the web design.