实例
<!DOCTYPE html> <html lang="en"> <head> <!-- 外联样式连接,#表示连接地址 --> <link rel="stylesheet" href="#"> <style> .ok{ color: yellow; font-size: 20px; } </style> <meta charset="UTF-8"> <title>Document</title> </head> <!-- <a href="" target="">与<iframe>之间的关联案例 --> <body> <a href="http://www.php.cn" target='php'>php中文网</a> <a href="http://www.html.cn" target='php'>html中文网</a> <a href="http://www.py.cn" target='php' >python中文网</a> <iframe src="" frameborder="1" name='php' width='500' height='500' ></iframe> <!-- 演示css中的内联样式,内部样式,外部样式的应用场景,理解style属性, style标签, 以及外部样式表的使用方式 --> <!-- 嵌入式 --> <p style="color:red; font-size:22px; ">这是嵌入样式,嵌入样式的优先级最高</p> <p class='ok' >这是内联样式</p> <!-- 由于老师不能看到外联样式,我就写个外联样式连接好了 --> </body> </html>
运行实例 »
点击 "运行实例" 按钮查看在线实例