1

我正在尝试将内容保存为 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>
    );
  });

在此处输入图像描述

4

1 回答 1

0

尝试这个:

h6{           
    width:50%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
于 2021-09-10T19:29:05.197 回答