CSS:在使用div内联块的选择器后可以移位?

时间:2014-11-09 22:57:19

标签: html css

我需要将磁盘图标放置在基线上以便与文本对齐,此外,不要增加行之间的垂直空间。

enter image description here

我到目前为止的CSS代码如下:

.openPage:after {
    content: ' ';
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0;
    margin-left: 4px;
    display: inline-block;
    background-image: url(../rsc/home/kws.corn.icon.page.png);
}

1 个答案:

答案 0 :(得分:0)

vertical-align:bottom;做到了!