• 密码登录
  • 手机登录
社交账号登录
阅读( ) 收藏( ) 加载中~ 我要纠错

代码实例

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>eyoumb教程(eyoumb.com)</title> 
<style>
    .center
    {
    	text-align:center;
    }
    p.center
    {
    	color:red; 
    }
</style>
</head>

<body>
    <h1 class="center">标题居中</h1>
    <p class="center">段落居中并为红色字体。</p> 
</body>
</html>



尝试一下 »

点击“尝试一下”按钮查看在线实例

class 选择器用于描述一组元素的样式,class 选择器有别于 id 选择器,class 可以在多个元素中使用。

class 选择器在 HTML 中以 class 属性表示, 在 CSS 中,类选择器以一个点"."号显示:

Remark 类名的第一个字符不能使用数字!它无法在 Mozilla 或 Firefox 中起作用。

×