outer_html property

outer_html property

Returns a fragment of HTML or XML that represents the element and its contents. Can be set, to replace the element with nodes parsed from the given string.

Definition:

@property
def outer_html(self):
    ...
@outer_html.setter
def outer_html(self, value):
    ...

See Also