我需要使特定类的按钮和链接以相同的方式查看和定位。我试过这个(简化):
<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)?