css :target
花了半小时在找如果完成:target的问题
需求:点击<a href="#Main">Main</a>时,会触发:target 效果
结果在网络上没有找到,因为不知道要找什么关键字,最后我还是记起来了。。。
<a href="#Main" id="Main">Main</a>
<style>
a:target { font-size:200%;}
</style>
就这么简单!简单东西容易忘记啊~
原理:在点击a时,url会有#Main的路径,这是在html里的id “Main” 会被触发一次,请好好记得o~