解决方案:
可以将伪元素设置为任何尺寸位置或形状甚至是脱离原来的位置
案例如下,或者参考网址 play.csssecrets.io/hit-area
原文
<input name="" type="button" value="按钮" style="width:200pxheight:200px"/>这是行内样式 再接在按钮里面添加
style="width:200pxheight:200px这是宽和高
纯css实现。这个小圆点应该是一个a标签:a{
width: 6px
height: 6px
float: right
margin-right: 6px
background-color: black
border-radius: 50%
}
a:hover{
width: 12px
height: 12px
}