CSS (s_09 ) Flashcards

1
Q

Que signifie CSS?

A

Cascading Style Sheets

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q
  1. Quel est le HTML correct pour faire référence à une feuille de style externe?

a) <stylesheet>monstyle.css</stylesheet>
(b)<link rel”=stylesheet”type=”text/css”A href=”mystyle.css”>
c) <style src=»monstyle.css»>

A

(b)<link rel”=stylesheet”type=”text/css”A href=”mystyle.css”>

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

Où dans mon document HTML se trouve le bon endroit pour faire référence à une feuille de style externe?

A

Dans la balise <head>

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

Quelle est la syntaxe CSS correcte?

a) body {color:black;}
b) {body; color:black;}
c) {body :color=black;}
d) body:color=black;

A

a) body {color:black;}

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

Quelle propriété est utilisée pour changer la couleur de fond ?

A

background-color

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

Comment ajouter une couleur d’arrière-plan pour tous les éléments<h1>?

a) h1.all {background-color:#FFFFFF;}
b) h1 {background-color:#FFFFFF;}
c) all.h1 {background-color :#FFFFFF;}

A

b) h1 {background-color:#FFFFFF;}

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

Quelle propriété CSS est utilisée pour changer la couleur du texte d’un élément?

A

color

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

Quelle propriété CSS contrôle la taille du texte ?

A

font-size

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

Comment afficher des hyperliens sans soulignement ?

a) a {text-decoration:none;}
b) a {underline: none;}
c) a {text-decoration:no-underline;}
d) a {decoration:no-underline;}

A

a) a {text-decoration:none;}

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

Quelle propriété est utilisée pour changer la police d’un élément ?

A

font-family

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

Comment afficher un padding comme celle-ci:
La padding supérieure = 10 pixels
La padding inférieure = 5 pixels
La padding gauche = 20 pixels
La padding droite = 1 pixel?

A

padding:10px 1px 5px 20px

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

Comment sélectionner un élément avec l’identifiant &laquo_space;démo » ?

A

( #demo )

Parenthèse pour que dièse apparaissent

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

Comment sélectionner les éléments portant le nom de classe «test» ?

A

.test

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

Laquelle de ces balises n’est pas une balise de structure?
a) <nav>
b) <head >
c) <header>
d) <footer >

A

b)<head > =balise de base (sandwich)

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