amp-carousel-button COLOR
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了amp-carousel-button COLOR相关的知识,希望对你有一定的参考价值。
我正在尝试更改.amp-carousel按钮中箭头的背景颜色。
我们谈论的是“WORDPRESS”
在自定义css和在“HEAD”中添加自定义代码时,背景颜色不会改变,但基本颜色仍然存在。我可能做错了什么。
在自定义CSS中我添加:以这种方式:
/ * Color Carousel Arrows * /
div.amp-carousel-button-prev {
background-color: rgba (150,30,30,0.5);
}
/ * Color Carousel Arrows * /
div.amp-carousel-button-next {
background-color: rgba (150,30,30,0.5);
}
那是另一种方式:
/ * Color Carousel Arrows * /
.amp-carousel-button-prev {
background-color: rgba (150,30,30,0.5);
}
/ * Color Carousel Arrows * /
.amp-carousel-button-next {
background-color: rgba (150,30,30,0.5);
}
但这不起作用
所以我试着把这段代码放在网站的负责人:
<style amp-custom>
div.amp-carousel-button {
background-color: rgba (150,30,30,0.5);
}
</ Style>
因为我也进入了
<style amp-custom>
.amp-carousel-button {
background-color: rgba (150,30,30,0.5);
}
</ Style>
什么!背景颜色始终是默认颜色
答案
我试过放大器操场,它确实有效!
以上是关于amp-carousel-button COLOR的主要内容,如果未能解决你的问题,请参考以下文章
turtle.color(color1,color2)同时设置画笔颜色color1, 填充颜色color2.两个色都用rgb模式怎么写?