[CSS]文字超出一行隐藏+图片居中

发布时间 2023-04-04 10:12:57作者: 夕苜19

 

来自酱酱。做个记录。

 

.book_item > div
{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.book_item > div:nth-child(1)
{
    display: flex;
    align-items: center;
    height: 240px;
}