Export the CSS to reset specific default behavior of browsers.
(self)
| 448 | self.addCss(self.SECTION_CSS % ('CSS of "%s"\n\n\tGenerated by PageBot\n\tCreated %s' % (name, now()))) |
| 449 | |
| 450 | def resetCss(self): |
| 451 | """Export the CSS to reset specific default behavior of browsers.""" |
| 452 | self.addCss(self.RESET_CSS) |
| 453 | |
| 454 | def sectionCss(self, title): |
| 455 | """Add named section marker in CSS output. |