I like some css anchor to button stuff posted by someone a while back,
but want the buttons to be the same width. How can I get the anchor
for 'test' and 'longerTest' to be the same width when displayed?
CSS=
<style type="text/css>
..button:link, .button:visited {
color: ButtonText;
font: ButtonText;
background-color: ButtonFace;
padding: 3px 15px;
font: small-caption;
border: outset 1px;
cursor: default;
text-decoration: none;
}
..button:active {
border-style: inset;
}
..button:hover {
border: outset 2px;
padding: 3px 15px;
}
</style>HTML=
<a href="./index.php?screen=test" class="button">test</a><br />
<a href="./index.php?screen=longerTest"
class="button">longerTest</a><br />