亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

搜索
博主信息
博文 35
粉絲 0
評(píng)論 0
訪問量 40118
最新下載
更多>
網(wǎng)站特效
網(wǎng)站源碼
網(wǎng)站素材
前端模板
選擇器與元素單位作業(yè)總結(jié)-2018-8-16
THPHP
原創(chuàng)
925人瀏覽過

元素單位手寫代碼:

IMG_20180816_233920.jpg

元素選擇器:

實(shí)例

<!doctype html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <title>選擇器</title>
  <style>
	*{margin:0;padding:0;}

	ul{ /* 標(biāo)簽選擇器 */
		width:800px;
		height:150px;
		margin:20px auto;
		border:1px solid #6633ff;
	}
	ul li{ /* 后代選擇器/層級(jí)選擇器 */
		list-style:none;
		float:left;
		width:80px;
		height:80px;
		background:#ff0066;
		border-radius:50%;
		font-size:20px;
		line-height:80px;
		text-align:center;
		color:#fff;
	}
	.li1{ /* class 選擇器 */
		background:#990000;
	}
	#li2{/* id 選擇器 */
		background:#99cc33;
	}
	li[style]{/* 屬性選擇器:屬性名可以隨意命名 */
		background:#333333;
	}
	ul>li[ste="pir"]{ /* 子選擇器 */
		background:#003399;
	}
	li[ste="pir"]~ *{/* 相鄰選擇器:選擇當(dāng)前元素后面的所有標(biāo)簽元素 */
		background:#993399;	
	}
	li[ste="pir"] + li{/* 相鄰兄弟選擇器: 當(dāng)前元素的后一個(gè)元素*/
		background:#33cc33;
	}
	h1,p{ /* 群組選擇器:可以選擇多個(gè)元素 */
		text-align:center;
		color:red;
	}
	a{font-size:3rem;}
	a:link{color:red;}/* 訪問前的a鏈接變色 */
	a:visited{color:#663300;}/* 訪問后的a鏈接變色 */
	a:focus{color:#003300;}/* 獲取焦點(diǎn)的時(shí)候a鏈接變色 */
	a:hover{color:blue;} /* 鼠標(biāo)懸停a鏈接變色 */
	a:active{color:#ff0033;}/* 鼠標(biāo)點(diǎn)擊a鏈接變色 */
	
	ul li:first-child{color:red;}/* ul子類的首個(gè)元素 */
	ul li:last-child{color:#ffff00;}/* ul子類的最后一個(gè)元素 */
	ul li:nth-child(5){color:#000099;}/* 選擇第5個(gè)元素,從前向前計(jì)算 */
	ul li:nth-child(odd){color:#33cc33;}/* 選中奇數(shù) 。偶數(shù):even */
	/* 偽元素選擇器: */
	ol li{
		font-size:2rem;
		color:#999;
	}
	ol li:only-child{ /* 選擇只有一個(gè)子類元素的 */
		color:#33cc00;
	}
	ol li:nth-last-child(2){/* 選中所有的ol li里面的子類元素第二個(gè)元素*/
		color:#660000;
	}
	ol li:nth-of-type(3){/* 選中所有的ol li里面的子類元素第三個(gè)元素*/
		color:#33cc66;
	}
  </style>
 </head>
 <body>
	<ul>
		<li class="li1">1</li>
		<li id="li2">2</li>
		<li style>3</li>
		<li ste="pir">4</li>
		<li>5</li>
		<li>6</li>
		<li>7</li>
		<li>8</li>
		<li>9</li>
		<li>10</li>
	</ul>
	<h1>php中文網(wǎng)</h1>
	<p>免費(fèi)的學(xué)習(xí)平臺(tái)</p>
	<a href="http://php.cn">php中文網(wǎng)</a>
	<ol>
		<li>哈哈</li>
	</ol>
	<ol>
		<li>1</li>
		<li>2</li>
		<li>3</li>
	</ol>
	<ol>
		<li>4</li>
		<li>5</li>
		<li>6</li>
	</ol>
 </body>
</html>

運(yùn)行實(shí)例 ?

點(diǎn)擊 "運(yùn)行實(shí)例" 按鈕查看在線實(shí)例





批改狀態(tài):合格

老師批語(yǔ):
本博文版權(quán)歸博主所有,轉(zhuǎn)載請(qǐng)注明地址!如有侵權(quán)、違法,請(qǐng)聯(lián)系admin@php.cn舉報(bào)處理!
全部評(píng)論 文明上網(wǎng)理性發(fā)言,請(qǐng)遵守新聞評(píng)論服務(wù)協(xié)議
0條評(píng)論
關(guān)于我們 免責(zé)申明 意見反饋 講師合作 廣告合作 最新更新
php中文網(wǎng):公益在線php培訓(xùn),幫助PHP學(xué)習(xí)者快速成長(zhǎng)!
關(guān)注服務(wù)號(hào) 技術(shù)交流群
PHP中文網(wǎng)訂閱號(hào)
每天精選資源文章推送
PHP中文網(wǎng)APP
隨時(shí)隨地碎片化學(xué)習(xí)
PHP中文網(wǎng)抖音號(hào)
發(fā)現(xiàn)有趣的

Copyright 2014-2025 http://ipnx.cn/ All Rights Reserved | php.cn | 湘ICP備2023035733號(hào)

  • 登錄PHP中文網(wǎng),和優(yōu)秀的人一起學(xué)習(xí)!
    全站2000+教程免費(fèi)學(xué)