Home  >  Article  >  Web Front-end  >  css外部与内部样式表_html/css_WEB-ITnose

css外部与内部样式表_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:35:541350browse

外部样式表

当样式需要应用于很多页面时,外部样式表将是理想的选择。在使用外部样式表的情况下,你可以通过改变一个文件来改变整个站点的外观。每个页面使用 标签链接到样式表。 标签在(文档的)头部:

浏览器会从文件 mystyle.css 中读到样式声明,并根据它来格式文档。

外部样式表可以在任何文本编辑器中进行编辑。文件不能包含任何的 html 标签。样式表应该以 .css 扩展名进行保存。下面是一个样式表文件的例子:

hr {color: sienna;}

p {margin-left: 20px;}

body {background-image: url("images/back40.gif");}



内部样式表

当单个文档需要特殊的样式时,就应该使用内部样式表。你可以使用

  hr {color: sienna;}

  p {margin-left: 20px;}

  body {background-image: url("images/back40.gif");}


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn