AddCSS reads CSS instructions from a string.
(css string)
| 198 | |
| 199 | // AddCSS reads CSS instructions from a string. |
| 200 | func (d *Document) AddCSS(css string) error { |
| 201 | return d.cssbuilder.AddCSS(css) |
| 202 | } |
| 203 | |
| 204 | // OutputAt renders an HTML fragment at an absolute position (x, y) on the |
| 205 | // current page with the given width. Use this for precise placement of |
no outgoing calls