css样式表自动生效有哪几种
css 样式表自动生效有五种方法:1. 直接内联样式;2. 内部样式表;3. 外部样式表;4. 属性选择器;5. javascript。
CSS 样式表自动生效的几种方法
CSS 样式表自动生效有以下几种方法:
1. 直接内联样式
内联样式直接写在 HTML 元素的 标签中。它只对包含它的元素有效,优先级高于其他样式。
立即学习“前端免费学习笔记(深入)”;
<p style="color: red; font-size: 20px;">一些文本</p>
2. 内部样式表
内部样式表写在
标签内的 标签中。它对整个页面有效,优先级高于外部样式表。<head> <style> p { color: blue; font-size: 16px; } </style><p><strong>3. 外部样式表</strong></p><p>外部样式表是一个独立的文件,其文件名以 .<a style="color:#f60; text-decoration:underline;" href="https://www.php.cn/zt/15716.html" target="_blank">css</a> 为扩展名。通过 <link> 标签将它链接到 HTML 页面。优先级低于内部样式表。</p><pre class="brush:php;toolbar:false"> <link rel="stylesheet" href="style.css">
4. 属性选择器
属性选择器匹配具有特定属性的元素。当元素具备此属性时,样式将自动生效。例如,以下样式将对所有带有 的元素应用红色文本:
[class="important"] { color: red;}
5. JavaScript
使用 JavaScript 可以动态地应用 CSS 样式。例如,以下代码将向元素添加一个 class,使其文本变为红色:
document.getElementById("myElement").classList.add("important");