表格中文本溢出问题

问题描述 投票:0回答:1

我正在尝试在表格中显示列表。但出现了文本溢出问题。如何用 css 解决这个问题,请指导我。

.pkgtable{
    width: 100%;
    table-layout: fixed;
}

.pkgtable th, td {
      vertical-align: top; 
    }

.pkgtable ul{
    font-size: 10px;
    line-height: 20px;
    width: 100%;
    list-style-type: square; 
}

.pkgtable li{
    margin-left: -12px;
    text-align: left;
    text-transform: uppercase;
}

screenshot

html css list listview html-table
1个回答
0
投票

您是否尝试过在 div 中实现列表?

© www.soinside.com 2019 - 2024. All rights reserved.