Add display:block to elements style: >>> print(PyQuery(' ').show())
(self)
| 960 | return self.css('display', 'none') |
| 961 | |
| 962 | def show(self): |
| 963 | """Add display:block to elements style: |
| 964 | |
| 965 | >>> print(PyQuery('<div />').show()) |
| 966 | <div style="display: block"/> |
| 967 | |
| 968 | """ |
| 969 | return self.css('display', 'block') |
| 970 | |
| 971 | ######## |
| 972 | # HTML # |