I am doing a notebook with R and i want to enlarge my tabsets width just as the title width like this :
but i didnt get the expected result. This is my R code :
---
title: "R Notebook"
output:
html_document:
html_notebook:
toc: yes
toc_depth: '2'
---
<style type="text/css">
body{
margin: 0 !important;
padding: 0 !important;
padding-left: 30px;
background:#F0F0F0;
max-width:830px;
width:100%;}
h1.title {
font-size: 40px;
color: DarkBlue;
background-color:#009ACD;
width:144%;
margin: 0 !important;
padding: 0 !important;
height:120px;
margin-left:-100px;
}
h2 { /* Header 2 */
font-size: 22px;
color: #0020C2;
}
</style>
# {.tabset}
## Plots
```{r}
summary(cars)
How can we fix it ?