making a "button" but with style properties

liunx

Guest
i want in a table<br />
to make some of the the text in the td look like a button<br />
so when it not pressed it will seem like a raised button<br />
and when pressed like a sunken button<br />
thanks in advance<br />
PEleg<!--content-->How about this<br />
<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"<br />
"http://www.w3.org/TR/html4/strict.dtd"><br />
<html><br />
<head><br />
<title>Untitled</title><br />
<style type="text/css"><br />
<!--<br />
a.b4 {<br />
display: block;<br />
width:120px;<br />
background-color: #999999;<br />
border-style:outset;<br />
text-align: center;<br />
color: #ffffff<br />
}<br />
a.b4:active {<br />
border-style:inset;<br />
}<br />
--><br />
</style><br />
<br />
</head><br />
<body><br />
<div><br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"#" class="b4">Button</a><br />
</div><br />
</body><br />
</html><!--content-->i want it when not pressd to be like "above" the page<br />
- elevated!<br />
how to do it?<!--content-->
 
Back
Top