본문 바로가기
아이들의 교육/HTML

[CSS] css 속성, 스타일, 색, 중앙

by 섹시맘1004 2015. 5. 26.
반응형

[CSS] css 속성, 스타일, 색, 중앙


스타일에 속성주기


<!DOCTYPE html>

<html>

<head>

<style>

p {

    color: red;

    text-align: center;

</style>

</head>

<body>


<p>css 속성</p>

<p>css 초보 따라하기</p>


</body>

</html>




결과


css 속성

css 초보 따라하기




p 태그 안에 스타일 속성 주기


<!DOCTYPE html>

<html>

<head>


</head>

<body>


<p style="color:blue; text-align:center;">css 속성</p>

<p style="color:blue; text-align:center;">css 초보 따라하기</p>


</body>

</html>



결과


css 속성

css 초보 따라하기




반응형