18. 스크롤바관련스타일
.NET프로그래밍/CSS 2.0 2009. 7. 28. 21:51 |<!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">
<head>
<title>스크롤바관련스타일</title>
<style type="text/css">
body
{
scrollbar-3dlight-color:aqua;
scrollbar-arrow-color:aqua;
scrollbar-base-color:darksalmon;
scrollbar-darkshadow-color:blue;
scrollbar-face-color:chartreuse;
scrollbar-hightlight-color:lightsalmon;
scrollbar-shadow-color:megenta;
}
</style>
</head>
<body>
<textarea cols="40" rows="4"></textarea>
</body>
</html>
<!-- 스크롤바에 스타일적용은 윈도우 웹브라우저에서만 실행가능하다. -->
< 실행결과 >
- 참고자료 : 스크롤바 색상용 CSS 파일 만드는 파일 -
'.NET프로그래밍 > CSS 2.0' 카테고리의 다른 글
21. 이미지관련스타일 (0) | 2009.07.29 |
---|---|
20. 리스트(목록)관련스타일 (0) | 2009.07.29 |
17. 링크관련스타일 (0) | 2009.07.28 |
16. 커서관련스타일 (0) | 2009.07.28 |
15. 배경관련스타일 (0) | 2009.07.28 |