这适用于我的网站http://www.blindsdetroit.com/我需要提供您无法透过背景图片看到的文字。它不适用于chrome或firefox。 rgb也不会工作,只是说它的属性值无效?这是为什么
这是我的css:
#top_box{
background: rgba (208,206,195,.5);
position:relative;
height:400px;
}
答案 0 :(得分:12)
我只是尝试使用Chrome Developer tools,它似乎是rgba
和左括号之间的空格。所以,而不是:
background: rgba (208,206,195,.5);
...试
background: rgba(208,206,195,.5);
答案 1 :(得分:-1)
将plt.plot(df.index,df['value'])
plt.show()
替换为fig, ax = plt.subplots()
ax.plot(df.index,df['value'])
ax.xaxis_date() # interpret the x-axis values as dates
fig.autofmt_xdate() # make space for and rotate the x-axis tick labels
plt.show()
。它在chrome和firefox浏览器中工作。