我如何更改调整大小我的列表图标?

时间:2016-08-14 11:49:12

标签: html css



#download_btn_1 {
    height: 40px;
    color: white;
    background: #5cb85c;
    font-weight: bold;
    border: 0;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 20px;
}

#d-i_1 {
    list-style-image: url(here the link);
}

<button id="download_btn_1"><li id="d-i_1">Button</li></button>
&#13;
&#13;
&#13;

请帮助我如何在按钮中调整列表图标的大小。 Beacouse我试图制作一个带图标的下载按钮。

1 个答案:

答案 0 :(得分:-2)

#icon {
  list-style-image: url(../images/...);
  width: some width;
  height: some height;
}  
相关问题