我在我的React应用程序中使用样式化的组件 我想添加标题属性(用于工具提示) 应用于我的样式组件
我尝试使用包装div html元素并在其上应用标题标签而无法做到这一点,还尝试使用css``样式组件助手无法做到这一点。
my styled components: (with ellipsis):
const FilterTitle = styled.div`
display: inline-block;
width: 100%;
line-height: 40px;
height: 40px;
color: ${blackChosen};
font-family: Poppins;
font-size: 16px;
letter-spacing: 0.15px;
padding-left: 15px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-weight: ${props => (props.chosen) ? '500' : 'initial'};
`;
and:
<FilterTitle> I might be a long sentence shown with ... and the title tag should tooltip me</FilterTitle>
答案 0 :(得分:3)
<FilterTitle>
仍在渲染div
,因此您可以将所需的任何属性直接放在该组件上,并将它们传递给div:
<FilterTitle title="A long sentence, eh?">...