html와 css 전단 개발 스타일 정리

01.css 웹 페이지 레이아웃 DIV 수평 가운데
.center {
	width: 1024px;
	height: 600px;
	margin: 0 auto;
	position: relative;
}

02. 마우스로 그림 전환 효과 그리기
<a href="#">
   <img src="../image/weixin1.png" width="35" height="35" onmouseover="this.src='../image/weixin2.png';" onmouseout="this.src='../image/weixin1.png';" />
</a>

좋은 웹페이지 즐겨찾기