偽類的練習

惡魔之典發表於2020-11-11

關於偽類的練習

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<style type="text/css">
/* 			li:first-child{
				font-size: 40px;
				color: #0000FF;
			} */
	/* 		li:nth-child(2n){
				font-size: 40px;
				color: #0000FF;
			} */
/* 			li:nth-child(2n-1){
						font-size: 40px;
						color: #0000FF;
					} */
		/* 	li:last-child{
				font-size: 50px;
				color: #008000;
			} */
		</style>
	</head>
	<body>
		<div >
			
		
		<ul class="list">
			<li>列表項1</li>
			<li>列表項2</li>
			<li>列表項3</li>
			<li>列表項4</li>
			<li>列表項5</li>
			<li>列表項6</li>
			<li>列表項7</li>
			<li>列表項8</li>
			<li>列表項9</li>
			<li>列表項10</li>
		</ul>
		</div>
	</body>
</html>

相關文章