我有一个夸托的html页面,有一个侧边栏和一个目录(即一个3栏页面)。我想增加内容栏(中间栏)的默认宽度,现在固定在~ 950 px。我该怎么做?
夸托.yml
project:
type: website
website:
title: "Big Center Section"
sidebar:
style: "docked"
search: false
contents:
- section: "Sidebar"
contents:
- text: "Item 1"
url: ./somewhere.html
format:
html:
theme:
- flatly
- custom.scss
css: styles.css
toc: true
木星IPYNB页面
---
title: "Big wide middle section"
jupyter: python3
format:
html:
code-fold: true
code-line-numbers: true
---
Second cell:
# SOME REALLY REALLY REALLY LONG HEADING I WANT 2000px WIDE.....
1条答案
按热度按时间ni65a41a1#
更新
sidebar-width
、body-width
、margin-width
和gutter-width
选项设置边栏宽度、文档正文、文档边距以及这些元素(装订线)之间的边距。sidebar-width
、body-width
和margin-width
应该以像素(px)为单位指定,gutter-width
可以以像素或其他单位(如em或rem)为单位指定。也可以使用SCSS变量。有关详细信息,请阅读来自quarto docs的文章网格定制。旧答案
我们可以通过将
width
设置为#quarto-document-content
的2000px来增加内容列的宽度(同时更改右侧边栏的边距以将其向右推)(Note我已经缩小了这个网站页面的截图)