html - CSS box around text, set box size -


i want create boxed border around text, numbers. want box same size, no matter if single digit number or triple digit number. i've tried couple things, every time border wraps number. number wrap tag.

strong{  border: 1px; border-style: solid; font-size:12px; } 

you have give fixed width element

strong { display: inline-block; width: 50px; border: 1px solid #000; text-align: center; } 

http://jsfiddle.net/lcpvgykr/


Comments

Popular posts from this blog

mysql - How to unscape text from database in android studio -

php - Admin SDK -- get information about the group -

Making CSS Drop Down Menu 2 Columns -