READ Free Dumps For Microsoft- 70-480
Question ID 14896 | You are developing an HTML5 web application and are styling text.
You need to use the text-transform CSS property.
Which value is valid for the text-transform property?
|
Option A | Capitalize
|
Option B | Hidden
|
Option C | Italic
|
Option D | Line-through
|
Correct Answer | A |
Explanation Explanation: CSS Syntax text-transform: none|capitalize|uppercase|lowercase|initial|inherit; Example Transform text in different elements: h1 {text-transform:uppercase;} h2 {text-transform:capitalize;} p {text-transform:lowercase;} Reference: CSS text-transform Property http://www.w3schools.com/cssref/pr_text_text-transform.asp
Question ID 14897 | You are developing an online shopping application that accepts credit cards for payment.
If the credit card number is invalid, the application must:
Generate an error
Assign "200" to the error number
Assign "Invalid" to the error description
You need to write the code that meets the requirements.
How should you write the code? (To answer, select the appropriate option from the drop-
down list in the answer area.)
|
Option A |
|
Correct Answer | A |
Explanation