CSS Flashcards

1
Q

What are the advantages and disadvantages of Internal style sheets?

A

Advantages:
-> It is easy to implement
-> It keeps all the code on a single page

Disadvantages:
-> It has a limited scope
-> It is difficult to maintain if used extensively

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

What are the advantages and disadvantages of lnline style sheets?

A

Advantages:
-> It is easy to implement
-> It can be used for only a single element

Disadvantages:
-> It causes code duplication as similar styles need to be copied and added to elements
-> It is limited to single element

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

What are the advantages and disadvantages of external style sheets?

A

Advantages:
-> It has an unlimited scope
-> It is easy to maintain and update

Disadvantages:
-> It requires a separate file
-> It can be slow to load

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