Hello.
I�m using a CSS style (line1) in a radio button, to add borders to the line. But when I click on it, it looses it�s CSS, and becomes a normal radio button, without any CSS, centered left, and without center align. Anybody had this problem? The code of the
JSP is as follows:
<td class="line1">
<html:radio property="idCity" value="${item.id}"/>
</td>
here is the CSS:
td.line1{
text-align: center;
border-top: 1px solid;
border-right: 1px solid;
border-color: #B0B0B0;
}
thanks!