美文网首页
W3 Html Css

W3 Html Css

作者: Leathy | 来源:发表于2017-09-11 16:15 被阅读8次

http://www.w3school.com.cn/html/html_css.asp

css的三种样式表

外部样式表

当样式需要被应用到很多页面

<link rel="stylesheet" type="text/css" href="mystyle.css">

内部样式表

当单个文件需要特别的样式

<style type="text/css">

body {background-color: red}

p {margin-left: 20px}

</style>

内联样式

当特殊的样式需要应用到个别元素

<p style="color: red; margin-left: 20px">

This is paragraph

</p>

实例中的<meta>和<link>

<meta>

http://www.w3school.com.cn/tags/tag_meta.asp#meta_prop_name

<meta>的http-equiv属性

http://kinglyhum.iteye.com/blog/827807

<link>

http://www.w3school.com.cn/tags/att_link_rel.asp

相关文章

网友评论

      本文标题:W3 Html Css

      本文链接:https://www.haomeiwen.com/subject/apjfsxtx.html