I am using knitr to create a HTML webpage. The default setting seems to be 800px but I need a larger page size of 1100px
knitr
body { max-width: 800px
Add a css element to your document, e.g.
css
--- title: "test" output: html_document: css: "test.css" ---
and then put your new css information in that file, e.g.
body { max-width: 1100px; margin: auto; padding: 1em; line-height: 20px ; }