module Rabbit::Element::BlockElement

Public Instance Methods

adjust_y_padding(y, h) click to toggle source
# File lib/rabbit/element/block-element.rb, line 33
def adjust_y_padding(y, h)
  y += @padding_bottom
  h -= @padding_bottom
  [y, h]
end
inline_element?() click to toggle source
# File lib/rabbit/element/block-element.rb, line 29
def inline_element?
  false
end