Stump On HTML Text Data

liunx

Guest
I have a HTML page that has a javascript function that builds a simple Table of 5 elements.<br />
<br />
<br />
How can I display the data in each element on the page as<br />
simple text data.<br />
<br />
I can do it by using the <INPUT> tag but I do not like the look<br />
of the input box.<br />
<br />
I would like the variable text data to blend in with the background color of the page.<br />
<br />
I know there must be a simple way to do this, any help would be appreciated.<br />
<br />
Thanks<br />
Clyde<!--content-->Well, use a text box, but insert this instead<br />
<br />
<input type="text" name="txtname" style="background-color:red;border-style:none">It simply uses CSS inside a HTML tag.<br />
P.S change the name of the txt box and bgcolor in the style part of the input tag.:D<!--content-->
 
Back
Top