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

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -