Initialise the Style dict for the given element.
(self, element)
| 826 | """ |
| 827 | |
| 828 | def __init__(self, element): |
| 829 | """Initialise the Style dict for the given element.""" |
| 830 | self._style = element._dom_element.style |
| 831 | super().__init__() |
| 832 | |
| 833 | def __setitem__(self, key, value): |
| 834 | """Set a style property.""" |