HTML

时间:2022-10-22 07:34:00

块代码

<div>和<span>

1..

<style>

.ccwTest {

font-family: '.PingFang SC';">;

color:white;

margin:18px;

padding:16px;

}

</style>

<div class="ccwTest">

<h2>这些是文字</h2>

<p>这里是内容,改变这些文字的颜色或者是改变其他属性需要写在style里 ccwTest是名字,相当于ios中的对象名 通过这个对象名找到是调用的哪个方法</p>

</div>

2..

<style>

span.red {

color:red;

}

<h1>我的<span class="red">重要的</span>标题</h1>