javascript - Do <link href=""> tags only go in the <head> tag? -


is possible/good practice use <link href""> include stylesheets outside of <head> tag, or work / should used in <head>?

it's possible it.

it's not recommended it, because whatever content comes before <link> start rendering , when stylesheet loaded rerendered new styles. means pageload slower (because browser has redo work) , uglier (because there flash of content 1 style that's restyled different).


Comments