"HTML body 배경그림 넣기"의 두 판 사이의 차이

11번째 줄: 11번째 줄:
</source>
</source>


==방법==
==예제==
*예제: http://jmnote.com/html5/html-body-background.php
*http://jmnote.com/html5/html-body-background.php
<source lang='html5' highlight='3'>
<source lang='html5' highlight='3'>
<style tyle="text/css">
<style tyle="text/css">

2014년 7월 14일 (월) 20:39 판

1 개요

HTML body background image
HTML body 배경그림 넣기
<style>
body {
  background-image:url('그림주소');
  background-color: 배경색;
}
</style>

2 예제

<style tyle="text/css">
body {
  background-image:url('//www.w3schools.com/tags/w3s.png');
  background-color: #eeeeee;
}
</style>
<body>
<h1>안녕 친구들!</h1>
</body>

3 같이 보기

4 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}