아래의 소스를 <html> 태그와 교체하세요.
<html xmlns:v="urn:schemas-microsoft-com:vml">
아래의 소스를 <head>와 </head>태그 사이에 넣어 주세요.
<style>
v\:* { behavior: url(#default#VML); }
</style>
아래의 소스를 <body></body>사이에 넣어 주세요.
<v:roundrect style="width:500;height:100; filter:
Alpha(Opacity=70)" arcsize="0.2" fillcolor="blue" strokecolor="red"
strokeweight="2">
<table width=100% height=100%>
<tr>
<td align=center valign=center>
테이블 안에 들어간 내용
</td>
</tr>
</table>
설명>
1번과 2번 과정 소스는 그대로 넣어 주세요.
아래는 3번 소스의 간단한 설명입니다.
<v:roundrect style="width:500;height:100; filter: Alpha(Opacity=70)" arcsize="0.2" fillcolor="blue" strokecolor="red" strokeweight="2">
<table width=100% height=100%>
<tr>
<td align=center valign=center>
테이블 안에 들어간 내용
</td>
</tr>
</table>
------------------------------------------
style="width:너비;height:높이; filter: Alpha(Opacity=불투명도 수치)" arcsize="라운딩 정도" fillcolor="테이블 안 색상" strokecolor="테두리 색상" strokeweight="테두리 두께">
<table width=100% height=100%> // 테이블의 너비,높이는 왼쪽과 같이 100% 로로 설정.
참고:
불투명도 수치는 100 이면 투명하지 않고 0 이면 완전 투명합니다.
라운딩 정도 는 값이 클수록 모서리가 더 둥글 게 처리됩니다