Section 1

Preview this deck

selector

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

4 years ago

Date created

Mar 1, 2020

Cards (22)

Section 1

(22 cards)

selector

Front

part of the CSS line that selects what element to target with the property/value pair.

Back

inline

Front

this type of style uses the this attribute in the relevant tag; can contain any CSS property; has to be changed in every page if used

Back

Tag used for specifying logical areas within the paragraph or block code on a web page.

Front

<span> </span>

Back

Is the following a web safe color? #653456

Front

No, color codes include only numbers and letters pairs 0-9 and A-F to make a hexidecimal number.

Back

What is the code to link to an external style sheet call trillum.css

Front

<link href="trillium.css" rel="stylesheet" type="text/css" />

Back

What are the web safe color pairs?

Front

00,33,66,99,CC.FF

Back

what property configs bold text using CSS

Front

Font-weight

Back

What is the declaration property for background color?

Front

background-color

Back

A . (dot) represents a ___

Front

class

Back

declaration

Front

all code inside the curly brackets is the ____. body { font-family: Arial, sans-serif; / one declaration / color: #555; / another declaration /

Back

property

Front

what appears before the colon in any line of CSS

Back

ID

Front

a unique indentifier where all elements within a group of code will receive the styles in question. Usually used only once in the document

Back

An external sytel sheet uses the ___ extension

Front

.css

Back

class

Front

every element within a group of code will receive the styles in question; can be used more than once

Back

What is the declaraton property for setting font typefaces?

Front

font-family

Back

value

Front

what appears immediately after the colon in any line of CSS

Back

embedded

Front

CSS written directly into an HTML tag.

Back

external

Front

style sheet is ideal when the style is applied to many pages; with this type of style sheet, you can change the look of an entire Web site by changing one file.

Back

CSS was first proposed as a standard by the W3C in ____.

Front

1996

Back

A # (pound sign) represents a ___

Front

id

Back

Use the ___tag to associate a web page with an external style sheet

Front

link

Back

Use the ___tab to create logical areas on a web page that are embedded within paragraphs or other block formatting elements.

Front

<div> </div>

Back