1.Line height is best described by which of the following statements? More than
ID: 3710467 • Letter: 1
Question
1.Line height is best described by which of the following statements?
More than one answer.
a)Distance a baseball player runs 4 times to make a home run.
b)The width of an uppercase letter M.
c)Similar to leading in traditional typesetting.
d)The distance from baseline to baseline.
e)1.75 times the height of an uppercase letter X.
f)The height of a small letter x.
2.Which of the following would alter the font size of an unordered list's list items inside of a division with the id "features" to 20 pixels size?
More than one answer.
a) features ul li { font-size: 20px; }
b) p { font-size: 20px; }
c) ol li { font-size: 20px; }
d) div#features ul li { font-size: 20px; }
e) #features ul li { font-size: 20px; }
f) .features ul li { font-size: 20px; }
3.Which of the selectors do not need a "#" or a "." when called in CSS?
More than one answer
a) hilight
b) smooth
c) container
d) ol
e) p
4. The html has the following code in the body of the document.
<p class="sesame">Elmo has a very high voice</p>
Which one of the following will NOT make the font face change to Verdana?
a) .sesame {font-family: Verdana;}
b) p {font-family: Verdana;}
c) body {font-family: Verdana;}
d) h1, .sesame {font-family: Verdana;}
e) p.sesame {font-family: Verdana;}
f) p sesame {font-family: Verdana;}
5.Complete the following HTML code for creating a link to the page titled "recipes.html" that is in a folder called "thanksgiving": <a href="-------/ ----------">Recipes</a>
Explanation / Answer
Solution
1.
option D distance from baseline to baselline .
line height is also called is inter paragraph spacing . which is space between written line and blank line .
I feel there is only one answer for part 2,3 and 4
2.
E. #features ul li { font-size: 20px; }
as feature is a ID and for using ID in internal css we need # before its name . then ul stands for unordered list and li stand for list item whose property we want to change .
3.
# is used before id
"." dot is used before names of class .if hilight , container , smooth are names of class or id names then they need . or # before their names while using for internal css purpose .
p is only which do not require # or .
4.
F. p sesame {font- family:Verdana;}
sesame is a class and class need to have "." before its name .when using in internal CSS,for giving property (like font change ,color etc)
5.
<a href="/thanksgiving/recipes.html">Recipes</a>
black slash are used to set the path where this page recipes.html is present.
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.