Correct Detailed Answers Guaranteed A+ Latest
Update 2025 VERION
Which CSS property defines how text should be handled when it
extends beyond its allotted area? --- correct precise answers ---text-
overflow
What is the purpose of using the CSS3 h3 ~ p selector? --- correct
precise answers ---To select all <p> elements that are preceded by an
<h3> element
Which CSS3 selector can you use to apply a style to the first paragraph
of every container in a Web page? --- correct precise answers ---
p:first-of-type
CSS3 added support for multiple background images. What is the
correct syntax for applying two background images to the same
element? --- correct precise answers ---background-image:
url("images/logo.png"), url("images/pattern.png);
,What CSS3 property can be used to create rounded corners on an
image or other element? --- correct precise answers ---border-radius
The CSS3 @font-face rule requires you to specify which two
properties? --- correct precise answers ---font-family and src
Which CSS3 property can you use to apply a shadow effect to text? ---
correct precise answers ---text-shadow
To change the position of a transformed element in CSS3, you use the:
--- correct precise answers ---transform-origin property.
Which CSS3 property defines whether or not a transformed element is
visible when it is rotated to face away from the viewer? --- correct
precise answers ---backface-visibility
Which CSS3 property can be used to apply a delay effect when an
element changes from one style to another, such as when a user
hovers over an element? --- correct precise answers ---transition
Consider the following style rules:
,img {
height: 150px;
width: 150px;
transition: height 3s, width 3s;
}
img:hover {
height: 300px;
width: 300px;
}
Using these styles, what will occur when a user hovers over an image
on the page? --- correct precise answers ---The image's height and
width will gradually increase to 300 pixels over a 3-second time
period.
To allow users to change the size of elements on a Web page, such as a
<div> element, you can add which CSS3 property? --- correct precise
answers ---resize
, The CSS3 appearance property can be used to make an element: ---
correct precise answers ---like like a button
A positive Z-index value usually places an element where? --- correct
precise answers ---In front of the other elements
To position an element behind another element, you can assign a
negative value to: --- correct precise answers ---the Z-index property.
JavaScript is a scripting language. Scripting languages: --- correct
precise answers ---interpret and automate a list of tasks that would
otherwise be executed one-at-a-time by a person.
Sarah has written several JavaScript scripts for her Web site, but she
realizes that implementing the scripts may be complicated by the fact
that people may view her pages using different user agents and user
agent versions. What should Sarah do to ensure that her scripts will
run correctly without knowing what user agent a person will use to
view her pages? --- correct precise answers ---Test her scripts in the
latest versions of popular browsers