• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/14

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

14 Cards in this Set

  • Front
  • Back
  • 3rd side (hint)

What is padding?

Property that controls the amount of space between the element and its border.

Space

What is Margin?

Property that controls the amount of space between an element's border and surrounding elements.

Does inheritance exists in Html?

Yes. All elements inside some other element will inherit the attributes.

Order of Priority Classes Html:

The second class declaration. First class declaration

Override hierarchy

!Important. Inline styles. Id. Classes

Responsive Design

Figure out how wide is your screen is and respond resizing elements.

How you print all the values in an JavaScript Object?

You can do it with a for in loop:


for(var prop in object1){


console.log(object1[prop]) ;


}

JSON is:

A string

What does DOM stands for?

Document Object Model.

What is Document Object ?

The document is a global object representing the HTML and content of a webpage that JavaScript can use.

Interactivity with Js involves which three basic actions?

Selecting elements, manipulating elements, and listening for user actions.

Complete the sentence:


The DOM is a ..

Representation fo the document that Js uses to navigate and make changes to a webpage.

Write an Arrow Function.

const name = (parameters) = >{




}

What are the Javascript Falsy Values??

There are only five falsey values: undefined, null, NaN, 0, ""(empty string) and false.