批改狀態(tài):合格
老師批語:并非所有網(wǎng)站都允許在iframe標(biāo)簽中打開, 你試過了, 有的是打不開的
iframe標(biāo)簽案例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>內(nèi)聯(lián)框架標(biāo)簽</title> </head> <body> <h3>看片平臺(tái)</h3> <ul style="float: left"> <li><a href="https://www.iqiyi.com/" target="main">愛奇藝</a></li> <li><a href="https://www.youku.com/" target="main">優(yōu)酷</a></li> <li><a href="http://www.baofeng.com/" target="main">暴風(fēng)</a></li> <li><a href="https://v.qq.com/" target="main">騰訊視頻</a></li> </ul> <iframe srcdoc="測(cè)試" name="main" width="300px" height="500"></iframe> </body> </html>
點(diǎn)擊 "運(yùn)行實(shí)例" 按鈕查看在線實(shí)例
css優(yōu)先級(jí)demo
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <link rel="stylesheet" href="style/style.css"> <title>Title</title> <style> /*內(nèi)聯(lián)樣式*/ span{ color: red; } </style> </head> <body> <h1>css優(yōu)先級(jí)設(shè)置</h1> <span style="color: blue;">html小白成功之路</span> </body> </html>
點(diǎn)擊 "運(yùn)行實(shí)例" 按鈕查看在線實(shí)例
css選擇器的使用案例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>css選擇器的使用</title> <style> p { color: red; } .test{ color: blue; } #main{ color: green; } </style> </head> <body> <p id="main" class="test">id選擇器的優(yōu)先級(jí)是除了js之外最高的</p> <p>class選擇高于標(biāo)簽選擇器</p> <p>標(biāo)簽選擇器的級(jí)別是最低的</p> </body> </html>
點(diǎn)擊 "運(yùn)行實(shí)例" 按鈕查看在線實(shí)例
盒子模型
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>盒子模型</title> <style> .box{ width: 300px; height: 300px; background-color: red; padding: 30px 30px; } .box2{ height: inherit; background-color: blue; } </style> </head> <body> <div class="box"> <div class="box2"></div> </div> </body> </html>
點(diǎn)擊 "運(yùn)行實(shí)例" 按鈕查看在線實(shí)例
微信掃碼
關(guān)注PHP中文網(wǎng)服務(wù)號(hào)
QQ掃碼
加入技術(shù)交流群
Copyright 2014-2025 http://ipnx.cn/ All Rights Reserved | php.cn | 湘ICP備2023035733號(hào)