Tag: html

Assign width to span tag

Usually, you cannot directly assign width to a tag because it defaults to an inline style. And that the width you assigned will have no effect. Width property can only be assigned to elements that behaves like a block (i.e div).. But if for some r…