如何在表格中对齐数字

时间:2018-08-03 10:59:50

标签: css angular

我尝试了align-item:left;其他也尝试了但没有得到我想要的,请找到我的错误,并添加了一些屏幕快照图片,您也可以参考这些图片。

我想将数字左下对齐:

enter image description here

我想像这样的图片对齐英雄数量:

enter image description here

下面是我的代码示例:

/* HeroesComponent's private CSS styles */
.selected {
    background-color: #CFD8DC !important;
    color: white;
  }
  .heroes {
    margin: 0 0 2em 0;
    list-style-type: none;
    padding: 0;
    width: 15em;
  }
  .heroes li {
    cursor: pointer;
    position: relative;
    left: 0;
    background-color: #EEE;
    margin: .5em;
    padding: .3em 0;
    height: 1.6em;
    border-radius: 4px;
  }
  .heroes li.selected:hover {
    background-color: #BBD8DC !important;
    color: white;
  }
  .heroes li:hover {
    color: #607D8B;
    background-color: #DDD;
    left: .1em;
  }
  .heroes .text {
    position: relative;
    top: -3px;
  }
  .heroes .badge {
    display: inline-block;
    font-size: small;
    color: white;
    padding: 0.8em 0.7em 0 0.7em;
    background-color: #607D8B;
    line-height: 1em;
    position: relative;
    left: -1px;
    top: -4px;
    height: 1.8em;
    margin-right: 0.8em;
    border-radius: 4px 0 0 4px;
  }

1 个答案:

答案 0 :(得分:0)

尝试使用text-align: left;

如果它不起作用,请提供HTML代码以更好地理解??