Hi,
I'd use an inline element as Jason suggested but I'd set it to inline-block so that you can style it nicely.
Something like this:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
.test {
min-height:126px;
margin:0 auto 10px;
text-align: center;
width: 195px;
background:green;
line-height:1.2;
}
.test b {
display:inline-block;
padding:2px 5px;
border:1px solid #000;
background:#fcf;
color:#f00;
margin:2px;
}
</style>
</head>
<body>
<p class="test"><b>0</b></p>
<p class="test"><b>1</b><b>0</b><b>0</b><b>0</b></p>
<p class="test"><b>2</b><b>5</b></p>
</body>
</html>
I used a p element as the container because I guessed that you were saying something like "100 days left....". The p could be changed for a div or other more suitable tag if the context is not as I guessed.
Bookmarks