div,p 가운데정렬, margin:0 auto;
페이지 정보
작성자 홈피사랑 작성일14-07-16 11:48 조회4,215회 댓글0건관련링크
본문
margin:0 auto; div,p 등의 요소들을 가운데 정렬할수 있는 방법입니다.
예제코드
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ko" lang="ko">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>홈페이지제작업체 - 홈피사랑 HOMPYLOVE</title>
<link rel="stylesheet" href="css/reset.css" media="all"/>
<style type="text/css">
.box{width:200px; height:30px; background-color:#000000; font-size:11px; line-height:20px;}
.a_center{margin:0 auto;}
</style>
</head>
<body>
<div class="box">
기본정렬
</div>
<br/>
<div class="box a_center">
가운데정렬
</div>
</body>
</html>
예제링크
http://hompylove.com/2014/test/09.html
댓글목록
등록된 댓글이 없습니다.