Module 2 Flashcards

1
Q

The CSS ______ selects the element you wish to style.

  1. <color>
    </color>
  2. Selector
  3. Tag
  4. Href
A
  1. Selector
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is Favicon?

A

“Favorite icon.”

Graphical images meant to identify a particular website/webpage, that are displayed in web browsers in the address bar or tabs.

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

How can hide and unhide an element in html using CSS?

A

Using the property visibility.

Ex:

visibility: hidden;

visibility: visible;

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

What is Rollover?

A

An effect that causes a change to an image when a mouse hover over it.

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

What is Flexbox?

A

A tool in CSS that allows for a flexible layout structure used to make sites more responsive.

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

What is Webkit?

A

A browser engine used by many companies, including Apple.

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

What is Ms-text?

A

A CSS property from Microsoft that specifies spacing and adjustment of text.

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

Z-index workds only on…

A

… positioned elements (e.g, absolute, relative)

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

What for the Transform-Origin property is used?

A

To alter the position of an image.

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

Who has the higher precedence in css code: internal, external or inline?

A

Inline.

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

Extermal and Internal css have the same precedence?

A

Yes.

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

How conflicting external and internal css conflicting code is resolved?

A

If the link tag cames before the style tag the external file has precedence.

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

How the Level of Specificity of a selector determines precedence?

A

The more specific more precedence the selector has.

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

What is the order of specificity of the selectors?

A

From less specific to more specific:

type selectors -> class selectors -> id selectors -> style attributes.
tag -> .class -> #id -> <p style="...">

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

What is the name of the CSS effect that causes a change to an image when a mouse hovers over it?

  1. Gaussian blur
  2. Z-index
  3. MS-Text
  4. Rollover
A
  1. Rollover
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Which of the following is NOT a value that can be applied to the visibility property?

  1. Visible
  2. Hidden
  3. Opaque
  4. All values can be applied to the visibility property
A
  1. Opaque
17
Q

The transform-origin property can be used to:

  1. Specify the visibility of an element
  2. Determine how elements will be stacked
  3. Apply a blur to images
  4. Alter the position of an image
A
  1. Alter the position of an image