READ Free Dumps For Microsoft- 70-480
Question ID 14942 | You are creating a custom style by using CSS3. You need to complete the CSS3 style. |
Option A | Answer : * text-shadow * hyphens: auto Words can be broken at appropriate hyphenation points either as determined by hyphenation characters) inside the word or as determined automatically by a language- appropriate hyphenation resource (if supported by the browser or provided via @hyphenation-resource). Conditional hyphenation characters inside a word, if present, take priority over automatic resources when determining hyphenation points within the word. |
Correct Answer | A |
Question ID 14943 | You implement a callback function by using JavaScript. |
Option A |
* Example: httpRequest.onreadystatechange = function() { // inline function to check the status // of our request // this is called on every state change if (httpRequest.readyState === 4 && httpRequest.status === 200) { callback.call(httpRequest.responseXML); // call the callback function } }; // call the function some_function2("text.xml", function() { console.log(this); }); |
Correct Answer | A |