CSS Button Style Links
Posted: Sat Jun 18, 2005 12:50 am
I have an external stylesheet, with this in:
And in my html page, I have this:
My question is, how do I turn the button into a link?
I tried using the <href> tags around the whole line, but that gets a massive chunky border around the button, and the link didnt work
Code: Select all
input.btn{
border-width:2;
border-style:solid;
background-color:darkred;
color:AliceBlue;
border-color:White;
Font-family:"e;Verdana"e;;
font-size:10pt;
cursor:hand;
height:24px;
}Code: Select all
<input type="e;button"e; value="e;Do this crime"e; class="e;btn"e; href="e;www.imageshack.us"e;>I tried using the <href> tags around the whole line, but that gets a massive chunky border around the button, and the link didnt work