How much width will this div occupy ?
div {
width: 100px;
padding: 10px;
margin-right: 5px;
border: 2px;
}
Responda
100px
117px
129px
124px
Questão 4
Questão
Assume that this code is linked together correctly
p { color: red; padding: 10px 5px; background: black; }
.fancy {font-family: cursive; background: red; color: green; }
.plain {font-family: Times, serif; color: black; }
<p class="plain fancy"> Hi </p>
What color font is used to display "Hi" ?
Responda
green
red
black
browser default
Questão 5
Questão
What is default font size of the h1 tag ?
Responda
40px
24px
16px
32px
Questão 6
Questão
Which key word used to make animation in HTML code ?
Responda
@keyframe
@animation
@keyframes
@html-animation
Questão 7
Questão
Assume the following rule is the only one that styles the body element:
body { font-family: Cursive, Helvetica, Verdana; }
What happens if the browser doesn't support any of these font families ?
Responda
The text will not be displayed
The text will be displayed in Cursive
The text will be displayed in the default browser font-family
None of the above
Questão 8
Questão
Assume that code:
<html>
<head>
<style>
div {
margin-right:15px;
float: left;
}
.a {
width: 100px;
color: #ff00ff;
}
.b {
width: 100px;
margin-right: 15px;
float: right;
}
<style>
<head>
<body>
<div class="a">It is a division A</div>
<div class="b">It is a division B</div>
</body>
</html>
Total width of the body is 1000px. What is the starting point of division B ?
Responda
115px
101px
885px
900px
Questão 9
Questão
How do you display a border like this:
the top border = 10 pixels
the bottom border = 5 pixels
the left border = 20 pixels
the right border = 1 pixels
Responda
border-width: 10px 5px 20px 1px;
border-width: 10px 20px 5px 1px;
border-width: 10px 1px 5px 20px;
border-width: 5px 20px 10px 1px;
Questão 10
Questão
How do you select all p elements inside a div element ?
Responda
div+p
div.p
div p
all.p
Quer criar seus próprios Quizzesgratuitos com a GoConqr? Saiba mais.