css 我如何可以改变调整我的列表图标在HTML文件

qybjjes1  于 2023-01-10  发布在  其他
关注(0)|答案(1)|浏览(109)
#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>

我无法调整按钮中列表图标的大小。因为我正在尝试制作一个带有图标的下载按钮。我该如何解决这个问题?

o7jaxewo

o7jaxewo1#

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

相关问题