I'm using fonttello, but it doesn't scale from center.

my html

<span class="icon-marker-dot x2 icon_centering"></span>

css

.icon_centering {
    font-size: 5.5em;
    color: #FFF;
    background: #428bca;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    width: auto;
    height: auto;
}
有帮助吗?

解决方案

FIDDLE, now the whole thing will scale when you change the font-size

CSS

.icon_centering {
    font-size: 5.5em;
    line-height:2.5em;
    height:2em;
    width:2em;
    vertical-align:middle;
    overflow:hidden;
    color: #FFF;
    background: #428bca;
    border-radius: 9999em;
    display: inline-block;
    text-align: center;
}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top