Unit C Flashcards

CSS Start

1
Q

Lines or blocks of CSS code that specify the presentation of web page elements. {}

A

style rules

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Most recent version of CSS

A

CSS3

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

An aspect of the appearance of a web page element that can be modified. For instance, you can change the background color or text alignment of an element. Ex. text-align

A

property

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Combination of a property name and a value. Ex. text-align: center;

A

declaration

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Apply associated declarations to every instance of the specified element in a web document. Ex. h1 or p

A

type selectors

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Identifies the HTML element or elements to which the declarations apply. CSS supports several different types of these.

A

selectors

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

All descendant elements of selected elements

A

inheritance

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Consists of CSS style rules entered in the head element of an HTML document.

A

embedded style sheet

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

CSS code that applies to that element alone. (#) followed by the value of the id attribute for the element. Ex. id=”contact”

A

ID selector

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Creates a style rule based on values assigned to elements using the HTML class attribute. Allows you to apply a style rule to an unlimited number of separate elements. Ex. class=”accent”

A

class selector

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How to add multiple selectors to a single rule?

A

Enter the selectors with a comma after each one except the last.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

separate file containing style information that multiple web pages can link to.

A

external style sheet

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Used to reference an external style sheet.

A

link element

How well did you know this?
1
Not at all
2
3
4
5
Perfectly