[Skip to the main content] Welcome to Daigo’s Daily Digital Diorama. I blog about Baseball, Judo, Jazz, Linux, Design and on being a dad.

  • Get Firefox!

Adding CSS

in the <head>

<style type="text/css">
.class {
color: #ddd;
background-image: url(’/imagesl/background.gif’);
background-repeat: no-repeat;
background-attachment: fixed;
background-color: #fff;
background-position:center;
font-family: verdana, helvetica, arial, sans-serif;
font-size: 0.8em;
line-height:1.4em;
text-align: center;
}
</style>

or do this

<style type="text/css">
@import url(css/styles.css); /* @import as to be the first titem */
</style>

Comments are closed.