CSS width of a tag

后端 未结 7 634
清歌不尽
清歌不尽 2020-12-07 16:36

I use tags in my module titles, e.g.

Categories.

I specify the span\'s background color/imag

7条回答
  •  一整个雨季
    2020-12-07 16:43

    spans default to inline style, which you can't specify the width of.

    display: inline-block;
    

    would be a good way, except IE doesn't support it

    you can, however, hack a multiple browser solution

提交回复
热议问题