show/hide this revision's text 2 added 155 characters in body

if you set the #tagcloud and .tag styles to the same width you could then just align the text center.

#tagcloud, .tag {
  width:100px;
  text-align:center;
}

another option would be as follows:

#tagcloud {
  width:100px;
  text-align:center;
}

.tag {
  display:inline;
}
show/hide this revision's text 1

if you set the #tagcloud and .tag styles to the same width you could then just align the text center.

#tagcloud, .tag {
  width:100px;
  text-align:center;
}