css调用方法:1、在文档head部分通过style定义的css内部样式,需要在网页的标签中使用css选择器名称调用;2、写在外部文件的css样式,在HTML网页中通过link标签调用。 本教程操作环境:windows7系统、CSS3&&HTML5版、Dell G3电脑。 在HTML网页中css的不同使用方法调用css的方法不同。 1、内部样式表调用方法: 当单个文件需要特别样式时,就可以使用内部样式表。你可以在 head 部分通过 标签定义内部样式表。</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><head> <style type="text/css"> body {background-color: red} p {margin-left: 20px} 登录后复制内部样式表就是使用标签写在HTML网页中的css样式表,我们可以在网页的标签中使用css选择器名称调用。</p><p><strong>2、外部样式表调用方法:</strong></p><p>当样式需要被应用到很多页面的时候,外部样式表将是理想的选择。使用外部样式表,你就可以通过更改一个文件来改变整个站点的外观。</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><head> <link rel="stylesheet" type="text/css" href="mystyle.css"> </head></pre><div class="contentsignin">登录后复制</div></div><p>外部样式表就是写在外部文件的css样式,在HTML网页中通过link标签调用。</p> <p><strong>说明:</strong></p> <p>css样式的种类除了外部样式表和内部样式表,还有一种内联样式。</p> <p>但因为内联样式是直接写在HTML标签内的,不需要调用。</p> <p>(学习视频分享:<a href="https://www.php.cn/course/list/12.html" target="_blank">css视频教程</a>)</p>