ਫਰਮਾ:Table class/counterboard.css

ਵਿਕੀਸਰੋਤ ਤੋਂ
/* CSS classes/styles to assist in creating a counter board using a table, a rounded border is set around all the data items. */
table.__counters{
	margin:0 auto 0 auto;
	 border-spacing: 0.5em;
	 font-size: 1.2em;
}

table.__counters td{
  border-radius: 50%; /* To effectively create a circle around the data items. */
  border: 2px solid black; /*visible border */
  margin: 1em; /*and some space between the counters*/
}