Set the content in the p tag to not be displayed in new lines

Set the content in the p tag to not be displayed in new lines

  /*不换行*/
  white-space: nowrap;
  /*多余的部分以顶点点点的形式进行展示*/
  text-overflow: ellipsis;
  /*隐藏多余的部分*/
  overflow: hidden;

renderings
Insert image description here

Guess you like

Origin blog.csdn.net/weixin_41957626/article/details/132470629