Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
626 views
in Technique[技术] by (71.8m points)

css - React: How to style child element that depends on parent on Styled-Components

I've inserted a doughnut chart using FusionCharts but appears a link below the chart that i would like to remove. I've found the css to do it but on styled-components i tryed using this css and its not working.

the css:

svg > g[class^="raphael-group-"] > text{
   display: none;
}

my styled-component:

const svg = styled.svg`

`;

const g = styled.g.attrs({
  className: 'raphael-group-'
})``;

const text = styled.text`

`;

 export const Body = styled.body`

    ${svg} > ${g} > ${text}  {
       display: none;
    }

 `;

Here is the svg element: svgElement

How is the right way to do it?

question from:https://stackoverflow.com/questions/65921053/react-how-to-style-child-element-that-depends-on-parent-on-styled-components

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...