特定のクラスのボタンとリンクを作成して、同じように表示および配置する必要があります。私はこれを試しました(簡略化):
<html>
<head>
<title>My site</title>
<style>
.my-class {
display: inline-block;
background-color: #cccccc;
width: 18px;
height: 18px;
cursor:pointer;
box-sizing: border-box;
border: 1px solid #888888;
}
</style>
</head>
<body>
<a href="#" class="my-class" title="My link"></a>
<button class="my-class" type="submit" title="My button"></button>
</body>
</html>
ただし、リンクはボタンより少し上に配置されています。
それらを同じレベルに配置できるクロスブラウザのcssのみのソリューション(javascriptなし)はありますか?