In the default layout of application.html.erb that gets generated the book has added this line of code, saying because rails loads all of the stylesheets at once, we need a convention to limit controller-specific rules to pages associated with that controller. Using the controller_name as a class name is an easy way to do that..and they have added this code:
<body class = '<%= controller.controller_name %>' >
But still I don't understand what is it doing? Can someone explain it ? and actually is it a common and recommended thing to do or not?
