While we are styling a label using CSS, remember one thing.
i.e. Label is not a block element, so the width property is not applicable to it directly.
Hey don't worry, We have a simple solution to this problem, just make Label as block element
like as follows:
.mylabel{
display: inline-block;
width: 24px;
}
No comments:
Post a Comment