stylesheet_link_tag(*sources)
Instance Public methods
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.
stylesheet_link_tag "style" # => <link href="/assets/style.css" media="screen" rel="stylesheet" /> stylesheet_link_tag "style.css" # => <link href="/assets/style.css" media="screen" rel="stylesheet" /> stylesheet_link_tag "http://www.example.com/style.css" # => <link href="http://www.example.com/style.css" media="screen" rel="stylesheet" /> stylesheet_link_tag "style", media: "all" # => <link href="/assets/style.css" media="all" rel="stylesheet" /> stylesheet_link_tag "style", media: "print" # => <link href="/assets/style.css" media="print" rel="stylesheet" /> stylesheet_link_tag "random.styles", "/css/stylish" # => <link href="/assets/random.styles" media="screen" rel="stylesheet" /> # <link href="/css/stylish.css" media="screen" rel="stylesheet" />
Please login to continue.