Question

Which CSS statement should be used if you want text to be placed next to the right margin of the web page?

(1 point)
Responses

float:r;

float:r;

f: right;

f: right;

right float;

right float;

float:right;

Answers

GPT 3.5
float:right;

3 of 153 of 15 Items










Question
What effect will the following CSS rule have on a web page? div{ background-color:green; }

(1 point)
Responses

The entire page will have a green background.

The entire page will have a green background.

Material between the div tags will have a green background.

Material between the div tags will have a green background.

The text will be in a green font.

The text will be in a green font.

The dividing line will be green.
GPT 3.5
Material between the div tags will have a green background.
Which of the following is the correct way to create a div that is identified as “options”?

(1 point)
Responses

<div options="div">


<div id="options">


<options id="division">


<div id is "options">
GPT 3.5
<div id="options">
A _____ is a single unit in a computer display.

(1 point)
Responses

pixel

pixel

space

space

spot

spot

locale
GPT 3.5
pixel
Susan is going to create three different styles that will apply to three different sections of a web page. Which of the following is the correct version of the first line of CSS to do this?

(1 point)
Responses

div1{

div1{

#div1

#div1

#div1{

#div1{

#{div1
GPT 3.5
#div1 {
Which line will change the font family to serif?

(1 point)
Responses

font-family: "serif";

font-family: "serif";

font: "serif";

font: "serif";

serif: font-family;

serif: font-family;

font-family is "serif";
GPT 3.5
font-family: "serif";

Related Questions