I looking for a way to make the input text background image to be printed when I save the page as PDF (right click, "Print ..." option, and "Save as PDF").
The page has an square background image to simulate that each character is being typed into a square.
That's a piece of code to show what I mean:
#text
{
background-image: url("http://3.bp.blogspot.com/-4oAWWCcNNz4/Tjr3nKNyVUI/AAAAAAAAPLU/Pouua-pNsEY/s1600/sq.gif");
width: 213px;
height: 18px;
background-size: 20px;
border: none;
font-family: monospace;
font-size: 13px;
padding-left: 5px;
letter-spacing: 12px;
}
Name: <input type="text" size="10" maxlength="10" id="text"/>
Any suggestion to simply "enable" that part to be printed, or any other solution that offers the same flexibility of continusly typying, highliging and deleting the text, will be really appreciated.