css - Rmarkdown html matrix output width too narrow -
i'm aware of existing options make output wider :
option(width=200)   the issue when using rmarkdown go straight r file html, output bounded size of html box, not predetermined r option line width.
what css option or similar change wider output box?
i think you're looking max-width property of .main-container. default bootstrap theme sets 940px. can change adding top of rmd file:
<style type="text/css">  .main-container {   max-width: 1280px; }  </style>      
Comments
Post a Comment