why don't you just style the containing html element (#digitalclock) via css?
pixeline
2010-08-05 21:32:31
why don't you just style the containing html element (#digitalclock) via css?
You can use CSS to do this. Your clock is being displayed in a container with an ID of digitalclock
. That means you can define style rules in an external stylesheet, inline or in the <head>
of your .html file:
#digitalclock {
font-size: 1em;
font-family: arial, helvetica, sans-serif;
font-weight: normal;
color: red;
/* and whatever other rules you want */
}