Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将 Highcharts 生成的图表发送到后台(这样我就可以在页面顶部覆盖一个菜单项)。我怎样才能做到这一点?
相关CSS:
#chart { min-width: 400px; max-width: 1400px; margin: 0 auto; z-index: -999 !Important; }
问题是您在chartdiv 上设置 z-index 而不是它的父容器content:
chart
content
<div id="content" style="z-index:-1">
更新了小提琴。