NAME
HTML::Object::DOM::Element::Paragraph - HTML Object DOM Paragraph Class
SYNOPSIS
use HTML::Object::DOM::Element::Paragraph;
my $paragraph = HTML::Object::DOM::Element::Paragraph->new ||
die( HTML::Object::DOM::Element::Paragraph->error, "\n" );
VERSION
v0.2.0
DESCRIPTION
This interface provides special properties (beyond those of the regular HTML::Object::DOM::Element object interface it inherits) for manipulating <p> elements.
INHERITANCE
+-----------------------+ +---------------------------+ +-------------------------+ +----------------------------+ +---------------------------------------+
| HTML::Object::Element | --> | HTML::Object::EventTarget | --> | HTML::Object::DOM::Node | --> | HTML::Object::DOM::Element | --> | HTML::Object::DOM::Element::Paragraph |
+-----------------------+ +---------------------------+ +-------------------------+ +----------------------------+ +---------------------------------------+
PROPERTIES
Inherits properties from its parent HTML::Object::DOM::Element
align
A string representing an enumerated property indicating alignment of the element's contents with respect to the surrounding context. The possible values are left
, right
, justify
, and center
.
See also Mozilla documentation
METHODS
Inherits methods from its parent HTML::Object::DOM::Element
AUTHOR
Jacques Deguest <jack@deguest.jp>
SEE ALSO
Mozilla documentation, Mozilla documentation on paragraph element
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.