我正在开展一个项目。在那个项目中,我需要一个div的渐变背景。我需要一种颜色才能填充40px。另一种颜色填充钙(100%-40px)。我从来没有如此深入地玩渐变。我的40px颜色为rgba(51,51,51,0.44)
,100%-40px颜色为rgba(51,51,51,0.3)
。
这里我创建了一个图像
有可能吗?如果不是任何其他解决方案?
答案 0 :(得分:3)
当然,您只需将第一种颜色设置为40px后停止,然后将第二种颜色设置为从同一点开始并继续结束。
格式:
git pull --rebase
Dim n As Integer
Dim i As Integer
For n = 1 To 1 ' Sheet #
i = n + 2
Sheets(n).Select
Range("B26").Select
'ActiveCell.Value = "=[WeeksCountLinked.xlsx]Mr1!R3C15"
ActiveCell.Value = "=[WeeksCountLinked.xlsx]Mr1!Cells.(15,i)"
'ActiveCell.Value = "=[WeeksCountLinked.xlsx]Mr1!Cells.($O$3)"
Next n

linear-gradient(to bottom, grey, grey 40px, red 40px, red);
linear-gradient([direction], [first color], [first color] [color-stop point], [second color] [second color start point], [optional]);