1.Line height is best described by which of the following statements? Select all
ID: 3710048 • Letter: 1
Question
1.Line height is best described by which of the following statements?
Select all that apply.
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?
Select all that apply.
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?
Select all that apply.
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
1.answeris D distance from baseline to baselline . line height is also called is inter paragraph spacing . which is space between written line and blank line .
jhfjkdfhjdkhfkj
asjhkjhsfkksdhkf
area between above two lines is line height.
2.E. #features ul li { font-size: 20px; } ANS is correct
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.answer is F. p sesame {font- family:Verdana;}
this will ot work as 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>
we used back slashes 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.