码迷,mamicode.com
首页 > 编程语言 > 详细

使用HTML语言和CSS开发商业站点(4)

时间:2017-03-30 21:33:13      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:class类   port   font   使用   http   mil   不能   height   import   

选择器:

标签选择器

p{
  background-color:purple;
}

类选择器

.one{
  color:red;
}

ID选择器

#a{
  font-size:25px;
}

 

行内样式:

<p style="color:blue;"> </p>

 

链接外部样式表,地址为one.css。
<link rel="stylesheet" type="text/css" href="one.css" />

 

导入外部样式表,地址为one.css。
<style>
  @import url("one.css");
</style>

 

后代选择器:

ol li{
}

 

并集选择器:

p,input,h1{
}

 

常用字体属性(设置字体类型、 大小、        风格、        粗细)。
                  font-family     font-size   font-style font-weight

 

常用文本属性(设置文本颜色、设置元素水平对齐方式、设置首行文本的缩进、设置文本的行高、设置文本的装饰)
                     color              text-align                text-indent          line-height        text-decoration

 

标签选择器:页面中的xx标签采用。。样式

class类选择器:不同标签可以使用同一个class值

id选择器:必须唯一 id号不能重复

优先级:id选择器 > class类选择器 > 标签选择器

 

优先级:行内样式 > 内部样式 > 外部样式

 

font-style:italic;/*斜体*/
font-weight:bold;/*加粗*/

text-align:center;/*文本水平居中*/

text-decoration:none;/*没有下划线*/

text-decoration:underline;/*有下划线*/

text-indent:20px;/*首行缩进20像素*/

 

技术分享

使用HTML语言和CSS开发商业站点(4)

标签:class类   port   font   使用   http   mil   不能   height   import   

原文地址:http://www.cnblogs.com/a2367763409/p/6648470.html

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