NAME
HTML::Object::DOM::Element::TableCaption - HTML Object DOM TableCaption Class
SYNOPSIS
use HTML::Object::DOM::Element::TableCaption;
my $caption = HTML::Object::DOM::Element::TableCaption->new ||
die( HTML::Object::DOM::Element::TableCaption->error, "\n" );
VERSION
v0.2.0
DESCRIPTION
This interface special properties (beyond the regular HTML::Object::DOM::Element interface it also has available to it by inheritance) for manipulating table caption
elements.
INHERITANCE
+-----------------------+ +---------------------------+ +-------------------------+ +----------------------------+ +------------------------------------------+
| HTML::Object::Element | --> | HTML::Object::EventTarget | --> | HTML::Object::DOM::Node | --> | HTML::Object::DOM::Element | --> | HTML::Object::DOM::Element::TableCaption |
+-----------------------+ +---------------------------+ +-------------------------+ +----------------------------+ +------------------------------------------+
PROPERTIES
Inherits properties from its parent HTML::Object::DOM::Element
METHODS
Inherits methods from its parent HTML::Object::DOM::Element
EXAMPLE
<table>
<caption>Example Caption</caption>
<tr>
<th>Login</th>
<th>Email</th>
</tr>
<tr>
<td>user1</td>
<td>user1@sample.com</td>
</tr>
<tr>
<td>user2</td>
<td>user2@sample.com</td>
</tr>
</table>
DEPRECATED PROPERTIES
align
Is a string which represents an enumerated attribute indicating alignment of the caption with respect to the table. It may have one of the following values:
- left
-
The caption is displayed to the left of the table.
- top
-
The caption is displayed above the table.
- right
-
The caption is displayed to the right of the table.
- bottom
-
The caption is displayed below the table.
See also Mozilla documentation
AUTHOR
Jacques Deguest <jack@deguest.jp>
SEE ALSO
Mozilla documentation, Mozilla documentation on tablecaption element, Specifications
COPYRIGHT & LICENSE
Copyright(c) 2022 DEGUEST Pte. Ltd.
All rights reserved
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.