41 lines
1.2 KiB
HTML
41 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>03_类选择器</title>
|
|
<style>
|
|
/* 选中页面中所有类名为speak的元素 */
|
|
.speak {
|
|
color: red;
|
|
}
|
|
|
|
/* 选中页面中所有类名为answer的元素 */
|
|
.answer {
|
|
color: green;
|
|
}
|
|
|
|
.big {
|
|
font-size: 60px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>欢迎你</h1>
|
|
<h2>土味情话</h2>
|
|
<h3>作者:优秀网友们</h3>
|
|
<p class="speak big">万水千山总是情,爱我一点行不行</p>
|
|
<p class="speak">草莓、蓝莓、蔓越莓,今天你想我了没</p>
|
|
<p class="speak">我心里给你留了一块地,我的死心塌地!</p>
|
|
<span class="speak">哈哈</span>
|
|
<br>
|
|
<h2>反杀土味情话</h2>
|
|
<h3>作者:更优秀的网页们</h3>
|
|
<p class="answer big">请你对我说:一寸光阴一寸金,劝你死了这条心</p>
|
|
<p class="answer">请你对我说:西瓜、南瓜、哈密瓜、把你打成大傻瓜</p>
|
|
<p class="answer">请你对我说:我心里只有一块地,我的玛莎拉蒂</p>
|
|
</body>
|
|
|
|
</html> |