here is my fiddle, How do I wrap the content inside my DIV so it doesnt overlap my DIV? I know we can use
word-wrap: break-word;
but I have over 100 of these little "boxes" with numbers inside and I want everything to fit inside (about 4-5 digits long).
below is my css
thanks in advance
/* desk boxes*/
.desk_box_ver{
width: 18px;
height: 33px;
}
.desk_box_hor{
width: 23px;
height: 10px;
}
.desk_box_hor, .desk_box_ver {
position: absolute;
border: 4px solid black;
padding:10px;
}