Class: Html::Col

Inherits:
Tag
  • Object
show all
Defined in:
lib/html/col.rb

Direct Known Subclasses

HeadCol

Instance Method Summary collapse

Methods inherited from Tag

#attributes=, #to_s

Constructor Details

#initialize(value = '', **attrs) ⇒ Col

Returns a new instance of Col.



6
7
8
9
10
# File 'lib/html/col.rb', line 6

def initialize(value = '', **attrs)
  super(**attrs)

  @value = value
end