第三章 CSS样式

一.CSS添加方法

//方式一 行内
<body>
   <p style="color:red;">
        天使投资指早期投资,尤其指个人早期投资
   <p/>
<body/>
//方式二 内嵌
<head>
        <style type="text/css">
		p{
		  color:yellow;
	}
</head>
//方式三 单独文件添加
<head>
    <link rel="stylesheet" type="text/css" href="css/style.css">
	<title>Document</title>
</head>

优先级为:行内样式>内嵌样式>链接样式>浏览器默认样式

二.类别选择器

1.标签选择器

<style type = "text/css">
    body{background-color: #ccc;
  	   text-align:center;
  	   front-size:12px; }
  	h1{front:"黑体";font-size20px;
</style>}

2.类别选择器

<style type="text/css">
    p{font-size:12px;}
    .one{font-size:18px;
    .two{font-size:24px;}
</style>

<body>
  <p class ="one">类别1</p>
  <p class ="two">类别2</p>
</body>

3.ID选择器

<style type="text/css">
    #one{font-size:12px;}
    #two{font-size:24px;}
</style>


<body>
    <p id="one">文字1</p>
    <p id="two">文字2</p>
</body>

4.嵌套声明

<style type="text/css">
    p span{color:red;}
</style>


<body>
    <p><span>天使投资</span>是投资方式的一种</p>
</body>

 

 

 

 

 

 

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值