158258-Web Development

158258-Web Development

memorize.aimemorize.ai (lvl 286)
Section 1

Preview this deck

Cascading Style Sheets (CSS)

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

6 years ago

Date created

Mar 1, 2020

Cards (16)

Section 1

(16 cards)

Cascading Style Sheets (CSS)

Front

A primary language of presentation that provides the formatting and 'look' of a web page or document

Back

Seeding

Front

Used to programmatically create entities in the database and control the circumstances under which they are entered

Back

Document wide

Front

Type of CSS that includes style in the 'head'

Back

Global through external documents

Front

Type of CSS that takes it style from an external CSS document

Back

Scaffolding

Front

a meta-programming method of building database-backed software applications. It is a technique supported by some model-view-controller frameworks, in which the programmer may write a specification that describes how the application database may be used

Back

Migrations

Front

A method of updating the database schema based on code changes made to model classes

Back

Synchronization

Front

A method where two or more operations happen sequentially.

Back

Fixed

Front

Positioning where elements are completely independent of everything else on the web page. Regardless of any parents, this position element will always be positioned based on the browser window. when the page is scrolled, the element does not move and is always visible.

Back

Inline

Front

Type of CSS that has to be downloaded each time the page is requested. Its used to test or to specify rules that are unlikely to be reused

Back

Null

Front

the total absence of a value in a certain field and means that the field value is unknown

Back

Static

Front

Default type of positioning when elements don't have a position specifically set. There's not much you can do with a statically positioned element. These elements will stack in a standard one-after-another order. So in your code, whatever comes first will be displayed first, then the next element will be below it, and so on.

Back

Element selector

Front

Targets an existing HTML element by writing the name of it in the stylesheet

Back

Class selector

Front

Named using a dot prefix.and then referred to in the stylesheet

Back

Data Annotations

Front

different flags that you can put on things in order to give them different properties. Used to enforce pre-defined validation rules

Back

ID selector

Front

Targets a single element on the page

Back

Asynchronous

Front

A method with two or more operations running in different contexts (thread) so that they can run concurrently and do not block each other.

Back