SOURCE

console 命令行工具 X clear

                    
>
console
<button>按钮</button>
button {
    position: relative
}

button::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    bottom: -20px;
    right: -20px;
}

button:hover {
    background: red;
}