No problem.
As far as targetting your table only, first give it an id;
Code:
<table id="mytable" width="300" border="0" align="left" cellpadding="2" cellspacing="0">
and then change your CSS to this, so only the elements within your table are targetted;
Code:
#mytable .asterix { color:#f90102; }
#mytable .underline { text-decoration:underline; }
#mytable .cursor { cursor:pointer; }
#mytable strong { font-weight:bold; }
#mytable input, #mytable select, #mytable textarea, #mytable file { border:1px solid #D6D4CF; color:#999186; font-family:Arial,Helvetica,sans-serif; }
#mytable textarea { height:100px; width:250px; }
Bookmarks