Add Class To Body Using ERB In A View - Rails

user1919937 picture user1919937 · Dec 21, 2012 · Viewed 10.7k times · Source

I've watched this screencast to add a page title when in a view, is there a way I can do the same but add a class the body tag?

Answer

Jiří Pospíšil picture Jiří Pospíšil · Dec 21, 2012

Not sure what you mean, you can do it the same way:

In a view:

<% content_for :body_class, "my_class" %>

In a layout file:

<body class="<%= yield (:body_class) %>">