mirror of
https://github.com/jbranchaud/til
synced 2026-01-02 22:58:01 +00:00
529 B
529 B
Conditional Class Selectors in Haml
You can assign a class selector to a tag in HAML like so:
%div.active
You can conditionally assign a class selector in a concise manner like so:
%div{ class: ( "active" if @thing.active? ) }
You can do multiple conditional class selectors with array syntax:
%div{ class: [ ("active" if @thing.active?), ("highlight" if @thing.important?) ] }