HTML/CSSで以下のようなボタンを作成しようとしています。ボタンの実際の端のわずかに内側にある白い境界線を作成するための最良の方法は何でしょうか? ASP.net を使用しています。
前もって感謝します!
ここには多くの固定値がありますが、例を示すだけです
<style type="text/css">
.button { border: 3px solid orange; width: 300px; height: 50px; border-radius: 15px}
.button a { background: orange; border: 1px solid #fff; line-height: 46px; border-radius:12px; color: red; text-align: center; margin:1px; display: block;}
</style>
<div class="button">
<a href="#">Submit</a>
</div>