我正在尝试将内容保存为 HTML 标记并打印出来。我将其设置为 'text-overflow : ellpsis' 因为我只需要简短的细节,但它不起作用。有什么解决方法吗?
const MyFeedList: IPost = MainData?.recentMyPostResponseList?.map((item: any) => {
return (
<div className="feed" key={item.id}>
<img src={item.postImage} width="500px" />
<h4>{item.postName}</h4>
<h6
style={{ overflow: "hidden", textOverflow: "ellipsis" }}
dangerouslySetInnerHTML={{
__html: DOMPurify.sanitize(item.content),
}}
></h6>
</div>
);
});