Week 4 - CSS Part 1 Flashcards

1
Q

What is CSS used for?

A

Used for styling HTML documents.

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

What’s the common syntax for CSS?

A

selector {
property: value;
}

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

What are the different methods of incorporating CSS?

A

Inline, block level, external and imported.

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

What’s the difference between imported and external CSS linking?

A

Imported CSS isn’t yours and this saves you time.

External is that you’ve written it and allows for parallel downloading and therefore faster download times as opposed to imported CSS files.

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

Inline Styling

A

The styling is hard coded onto the element.

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

Block Level Styling

A

Makes use of the style element and is placed in the head of a HTML document to style multiple parts of the document.

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

External Styling

A

Makes use of an external CSS file with all of the styling and links to the HTML file using href.

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

Imported Styling

A

Making use of someone else’s style sheet and importing it into your HTML documents.

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

How to write a comment in CSS?

A

Like in C (Arduino):

/* … */

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

What are CSS selectors?

A

Selectors are how we choose what we want in the HTML document to be styled.

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

What is the common syntax for most CSS selectors?

A
element {
element1, element2 {
#id {
.class {
element.class {
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Web Usability

A

The ease of use when using the webpage.

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

Web Accessibilty

A

Web accessibility means that websites, tools, and technologies are designed and developed so that people with disabilities can use them.

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