Add srcset question skeleton
This commit is contained in:
parent
bb6ad86a30
commit
be31409418
|
|
@ -30,7 +30,7 @@ While there are some existing resources to help front end developers in preparin
|
|||
* [Describe the difference between `<script>`, `<script async>` and `<script defer>`.](#describe-the-difference-between-script-script-async-and-script-defer)
|
||||
* [Why is it generally a good idea to position CSS `<link>`s between `<head></head>` and JS `<script>`s just before `</body>`? Do you know any exceptions?](#why-is-it-generally-a-good-idea-to-position-css-links-between-headhead-and-js-scripts-just-before-body-do-you-know-any-exceptions)
|
||||
* [What is progressive rendering?](#what-is-progressive-rendering)
|
||||
* Why you would use a `srcset` attribute in an image tag? Explain the process the browser uses when evaluating the content of this attribute.
|
||||
* [Why you would use a `srcset` attribute in an image tag? Explain the process the browser uses when evaluating the content of this attribute.](#why-you-would-use-a-srcset-attribute-in-an-image-tag-explain-the-process-the-browser-uses-when-evaluating-the-content-of-this-attribute)
|
||||
* [Have you used different HTML templating languages before?](#have-you-used-different-html-templating-languages-before)
|
||||
|
||||
**[CSS Questions](#css-questions)**
|
||||
|
|
@ -255,6 +255,10 @@ Examples of such techniques:
|
|||
* Prioritizing visible content (or above-the-fold rendering) - Include only the minimum CSS/content/scripts necessary for the amount of page that would be rendered in the users browser first to display as quickly as possible, you can then use deferred scripts or listen for the `DOMContentLoaded`/`load` event to load in other resources and content.
|
||||
* Async HTML fragments - Flushing parts of the HTML to the browser as the page is constructed on the back end. More details on the technique can be found [here](http://www.ebaytechblog.com/2014/12/08/async-fragments-rediscovering-progressive-html-rendering-with-marko/).
|
||||
|
||||
### Why you would use a `srcset` attribute in an image tag? Explain the process the browser uses when evaluating the content of this attribute.
|
||||
|
||||
TODO
|
||||
|
||||
###### References
|
||||
|
||||
* https://stackoverflow.com/questions/33651166/what-is-progressive-rendering
|
||||
|
|
|
|||
Loading…
Reference in New Issue