<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS의 공통 선택자</title>
< ;style type="text/css">
/*요소 선택기*/
/**{색상: 빨간색;}*/
p{text-align: center;}
/* 카테고리 선택기* /
.c1{color: red; }
/*ID 선택기*/
/*#one{color: blue;font-size: 60px;}*/
/*우선순위 id>color>mark*/
</style>
</head>
<body class="box">
<p>php</p>
<span calss; ="c1">안녕하세요! 123</span>
<p>저는 321</p>
</body>
</html>