haizlin/fe-interview

[html] 第403天 如何放大点击的区域?

haizhilin2013 opened this issue · 2 comments

第403天 如何放大点击的区域?

3+1官网

我也要出题

<div class="button">点我</div>

<style>

.button{

position:relative;

}

.button::after{

content:"";

position:absolute;

top:-10px;

left:-10px;

right:-10px;

bottom:-10px;

}

</style>
  • 增加透明的边框
  • padding:30px;margin:-30px;
  • 伪元素法