Devices 2

Stylesheet Media

Stylesheet_link_tag(*sources) public

Returns a stylesheet link tag for the sources specified as arguments. If you don’t specify an extension.css will be appended automatically. You can modify the link attributes by passing a hash as the last argument. For historical reasons, the ‘media’ attribute will always be present and defaults to “screen”, so you must explicitly set it to “all” for the stylesheet(s) to apply to all media types.

"style" style", media: "print"

protocol').symbolize_keys sources.uniq.map { |source| tag_options = { "rel" => "stylesheet", "media" => "screen", "href" => path_to_stylesheet(source, path_options) }.merge!(options) tag(:link, tag_options) }.join("\n").html_safe

Interesting facts
You might also like
12-css-media-1
12-css-media-1
Media Queries Using Multiple CSS Stylesheets
Media Queries Using Multiple CSS Stylesheets
Related Posts