Method: Cat::Style::Position#to_s

Defined in:
lib/cat/style/position.rb

#to_sObject



18
19
20
21
22
23
24
25
26
# File 'lib/cat/style/position.rb', line 18

def to_s
  %{
position: absolute;
#{@top ? "top: #{@top};" : ""}
#{@right ? "right: #{@right};" : ""}
#{@bottom ? "bottom: #{@bottom};" : ""}
#{@left ? "left: #{@left};" : ""}
  }
end