READ Free Dumps For Microsoft- 70-480
Question ID 14928 | You create a custom style by using CSS3. You need to add the CSS3 markup to your style. |
Option A |
* box-sizing The box-sizing property is used to tell the browser what the sizing properties (width and height) should include. Should they include the border-box or just the content-box which is the default value of the width and height properties. * border-radius The border-radius property is a shorthand property for setting the four border-*-radius properties. Example Add rounded borders to a <div> element: div { border: 2px solid; border-radius: 25px; } |
Correct Answer | A |
Question ID 14929 | You develop an HTML5 application that allows users to upload files from their local |
Option A | Use an HTML form with a file type INPUT element that targets a hidden IFRAME element. |
Option B | Use a file type INPUT element, and then use the Web Storage API to upload the file. |
Option C | Use a FormData object and upload the file by using XMLHttpRequest. |
Option D | Register the file protocol by using protocol handler registration API and then upload the file by using XMLHttpRequest. |
Option E | Use the FileSystem API to load the file, and then use the jQuery post method to upload the file to the server. |
Correct Answer | B,D |