IT/Css

css3 - 배치, 리스트 꾸미기, 표 꾸미기, 폼 꾸미기

노마드오브 2018. 8. 20. 23:48

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>3개의 div 활용</title>

<style>

div {

display : inline-block;

width : 200px;

border : 1px solid green; 

}

</style>

</head>

<body>

<h3>3개의 div 활용</h3>

<hr>

<div>캔버스에 이미지를 그리기 위해서는 이미지를 담을 객체가 먼저 필요하다.</div>

<div>Image 객체의 src 프로퍼티를 이용하여 비트맵을 로드한다.</div>

<div>이미지 로딩이 끝나면 그 때 비로소 이미지의 너비와 높이가 제대로 알려진다.</div>

</body>

</html>




<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>3개의 div 활용</title>

<style>

div {

display : inline;

border : 1px solid green; 

}

</style>

</head>

<body>

<h3>3개의 div 활용</h3>

<hr>

<div>캔버스에 이미지를 그리기 위해서는 이미지를 담을 객체가 먼저 필요하다.</div>

<div>Image 객체의 src 프로퍼티를 이용하여 비트맵을 로드한다.</div>

<div>이미지 로딩이 끝나면 그 때 비로소 이미지의 너비와 높이가 제대로 알려진다.</div>

</body>

</html>




<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>소연재</title>

<style>

#fixed {

position : fixed;

bottom: 0px;

left : 0px;

width : 100%;

background: purple;

color : blue;

}

</style>

</head>

<body>

<h3>소연재</h3>

<hr>

<div>저는 체조 선수 소연재입니다. 음악을 들으면서 책읽기를 좋아합니다. 김치 찌개와 막국수 무척 좋아합니다.</div>

<div id="fixed">소연재 공연은 24일입니다.</div>

</body>

</html>




<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>오디오 재생 리스트</title>

<style>

td:first-child {

padding-right : 3px;

border : 1px solid green;

padding-left : 3px;

}

th {

text-align : left;

width : 200px;

border-bottom: 1px solid gray;

}

button:hover {

color : red/* 버튼에 마우스 오버시 빨간색으로 색 변경 */

}

</style>

</head>

<body>

<h3>오디오 재생 리스트</h3>

<hr>

<table>

<tr>

<td>1</td>

<th>애국가</th>

<td><button>재생</button></td>

<td><button>정지</button></td>

</tr>

<tr>

<td>2</td>

<th>Moon Glow</th>

<td><button>재생</button></td>

<td><button>정지</button></td>

</tr>

<tr>

<td>3</td>

<th>Embraceable You</th>

<td><button>재생</button></td>

<td><button>정지</button></td>

</tr>

</table>

</body>

</html>




<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>가보고 싶은 나라</title>

<style>

div {

background-color: aliceblue;

}

div ul {

list-style-type: square;

padding-right: 10px;

}

div ul li:hover {

background-color: yellowgreen/* li에 마우스 오버시 색 변경 */ 

}

</style>

</head>

<body>

<h3>가보고 싶은 나라</h3>

<hr>

<div>

<ul>

<li>프랑스</li>

<li>독일</li>

<li>칠레</li>

<li>남아프리카공화국</li>

</ul>

</div>

</body>

</html>




<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>가보고 싶은 나라</title>

<style>

div {

background-color: aliceblue;

}

div ul {

background-image : url("../media/worldmap.png"); /* 배경이미지를 넣을 수 있다 */

background-repeat : no-repeat;

background-size : 100% 100%;

list-style-type: square;

padding-right: 10px;

}

div ul li:hover {

background-color: yellowgreen;

}

</style>

</head>

<body>

<h3>가보고 싶은 나라</h3>

<hr>

<div>

<ul>

<li>프랑스</li>

<li>독일</li>

<li>칠레</li>

<li>남아프리카공화국</li>

</ul>

</div>

</body>

</html>