
Can't make it work at all!
Hi everybody!
I just discovered PIE and it looks like the solution for all my problems.
The only thing is that i can't make it work!
I know it's a noob problem, but if you guys could help I'd really appreciate.
I downloaded the file PIE.htc and putted it on the root of my project.
But when I check the IE, the textbox is with no border.
Sometimes, when I'm refreshing the page, I see the square border for less than 1 second, then it desapears.
My CSS code is:
Code:
input[type=text]
{
-webkit-border-radius: 7px;
-moz-border-radius: 7px;
border-radius: 7px;
height:20px;
border:3px solid #efefef;
behavior: url(PIE.htc);
}
And the source code is:
Code:
<table>
<tr>
<td class="form_tbldefault1">
<asp:Label ID="lbl_nome" runat="server" Text="Nome:" AssociatedControlID="txt_nome" CssClass="form_label"/>
</td>
<td class="form_tbldefault2">
<asp:TextBox ID="txt_nome" runat="server" Rows="1" Wrap="False" MaxLength="80"/>
</td>
</tr>
</table>
Thank you so much for your help!