自定义svg图标不像官方材料设计图标那样居中

时间:2018-04-04 20:33:34

标签: html css angular-material

我正在尝试将自定义svg图标居中,但我不能这样做,尽管同样的css适用于官方材质设计图标(我添加了浅绿色背景,因此更容易看到框架的位置)。

在最左边是我添加的自定义svg,在它旁边,在右边,它是官方的: enter image description here

我的css:

div.container {
    max-width: 512px;
    min-width: 256px;
    height: 50px;
    margin: auto;
    color: #000000;
    background-color: #ffffff;
    line-height: 50px;
    text-align: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-width: 1px;
    border-style: solid;
    border-color: #9e9e9e;
    padding-right: 20px;
    position: fixed;
    z-index: 1000;
    left: 0;
    right: 0;
    top: 30px;
  }

div.img {
    width: 50px;
    float: left;
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: #9e9e9e;
    background-color: #3f9c35;
}

div.img mat-icon {
    vertical-align: middle;
    background-color: aqua;
}

我的HTML

<div class="container">
  <div class="img">
    <mat-icon svgIcon="information">info</mat-icon>
  </div>
  <div class="img">
    <mat-icon>home</mat-icon>
  </div>
  Some text here!
</div>

请在this repo中找到代码。

有关如何将自定义svg图标居中的任何建议,例如官方的Material Design图标吗?

此外,如果你可以建议一个我可以将它连接到repo的平台,任何人都可以运行它,这样就可以更容易地共享代码并同时运行它。大多数平台都不允许我上传资产。

0 个答案:

没有答案