If you're tying to make an asp.net Button look like a linkbutton or a hyper link.
Try this css class.
.linkButton
{
background-color: transparent;
border-style: none;
color: /* Something nice */
cursor: pointer;
text-align: left;
text-decoration: underline;
display: table-cell;
}
Worked for me.
-- Lee



0 comments:
Post a Comment