码迷,mamicode.com
首页 > Web开发 > 详细

css基础教程

时间:2018-03-15 19:26:14      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:height   div   log   body   定义   image   内联   com   span   

css规则有两个主要部分构成:选择器,以及一条或多条声明。

技术分享图片

值的不同写法和单位:

可以使用十六进制设置颜色值:#ff0000; 为节约字节,使用css缩写形式:#f00;

技术分享图片

类选择器:以一个点号显示。

id选择器:以“#”来定义。

插入样式表的三种方法:

1)外部样式表

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

2)内部样式表

<head>
   <style>
     h1{color:#f00; width:20px; height:20px;}
   </style>
</head>    

3)内联样式表

<body>
<h1 style="color:red; margin-left:20px">标题1</h1>
</body>

 

css基础教程

标签:height   div   log   body   定义   image   内联   com   span   

原文地址:https://www.cnblogs.com/wuli-cxr/p/8575119.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!