Referencing this question: Is there a way to use use text as the background with CSS?
I was able to make one line of text appear behind another line of text. What I am having trouble figuring out is how to make multiple lines of background text. Here's the pattern i want to use: http://nanocluster.umeche.maine.edu/scope/bgScope
So inserting it directly didn't work, everything was on one line.
OK, I thought, I'll use a <pre></pre>
set of tags, but that made the background text invisible.
So then I tried taking out the pre
tags, and putting in <br>
on each new line. But it still nothing. Next I tried putting
font-family: Courier;
font-size: 18px;
color:#167c11;
into the style sheet, but, the text in the background is still invisible.
Have a look at the page where i am trying to get newlines into the text as a background. http://nanocluster.umeche.maine.edu/scope/
Can anyone see what I am doing wrong? How can I get multiple lines of text as a background in CSS?