gpt4 book ai didi

r - flexdashboard - 更改标题栏颜色

转载 作者:行者123 更新时间:2023-12-01 22:51:54 24 4
gpt4 key购买 nike

我想更改 Flexdashboard 的标题栏颜色。

我找到了删除它的示例 - SE here ,但鉴于我不懂 CSS/JQuery,我不得不问。

我想将条形颜色更改为红色,并将文本更改为黑色。

有人吗?

编辑(下面的示例):

---
title: "DB: Contact information"
output:
flexdashboard::flex_dashboard:
orientation: columns
vertical_layout: fill
---

<style>
.navbar {
background-color:crimson;
border-color:black;
}
.navbar-brand {
color:black!important;
}


</style>


Dashboard
=====================================

Test. Test. Test.

Column {data-width=650}
-----------------------------------------------------------------------

### Clustered Data

结果: enter image description here

最佳答案

您可以在<style>...</style>中自定义样式表。像这样的 block :

---
title: "Untitled"
output:
flexdashboard::flex_dashboard:
orientation: columns
vertical_layout: fill
---
<style>
.navbar {
background-color:red;
border-color:black;
}
.navbar-brand {
color:black!important;
}
</style>

```{r setup, include=FALSE}
library(flexdashboard)
```

Column {data-width=650}
-----------------------------------------------------------------------

### Chart A

```{r}
plot(0)
```

Column {data-width=350}
-----------------------------------------------------------------------

### Chart B

```{r}
plot(0)
```

### Chart C

```{r}
plot(0)
```

或者使用

output: 
flexdashboard::flex_dashboard:
css: styles.css

将您的自定义样式放在单独的 styles.css 中文件。

enter image description here

关于r - flexdashboard - 更改标题栏颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44305381/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com