Setting size for icon in CSS

前端 未结 6 1138
再見小時候
再見小時候 2021-01-31 15:54

I\'m working on JSF, and I\'m using this code to display an error box.

6条回答
  •  滥情空心
    2021-01-31 16:56

    The better way is using 'background-size'.

    .pnx-msg-icon .pnx-icon-msg-warning{
    background-image: url("../pics/edit.png");
    background-repeat: no-repeat;
    background-size: 10px;
    width: 10px;
    height: 10px;
    cursor: pointer;
    }
    

    even if your icon dimensions is bigger than 10px it will be 10px.

提交回复
热议问题