resizing a BUTTON through CSS

前端 未结 3 1063
闹比i
闹比i 2020-11-27 23:14

I use jquery mobile to generate my buttons and I have a CSS code below to change its design but no matter what value i put in width and height the size of the button doesn\'

3条回答
  •  情歌与酒
    2020-11-27 23:39

    The button might be an inline element. Make it an inline-block:

    display: inline-block;
    

提交回复
热议问题