background-color:green;
}
这串代码运行后在页面中状态可用状态背景色会呈现绿色。
第八十三节CSS_伪类选择器_目标伪类
这节课了解目标伪类::target选中锚点指向的元素。
代码基本格式:<style>
div{
background-color:gray;
height:300px;
}
div:target{
background-color:green;
}
<style>
<head>
<body>
去看第1个
去看第2个
去看第3个
去看第4个
去看第5个
去看第6个
<divid="one">第1个<div>
<br>
<divid="two">第2个<div>
<br>
<divid="three">第3个<div>
<br>
<divid="four">第4个<div>