css 伪类选择器 目标伪类

css 伪类选择器 目标伪类

<style>
	div{
      
      
		background-color:gray;
		height:300px;
	}
	div:target{
      
      
		background-color:green;
	}
</style>
<a href="#one">第一个</a>
<a href="#two">第二个</a>
<a href="#three">第三个</a>

<div id="one">第一个</div>
<div id="two">第二个</div>
<div id="three">第三个</div>

猜你喜欢

转载自blog.csdn.net/m0_48546501/article/details/130764545