정보 보관 ver1.0
CSS3 소개
James Wetzel
2010. 12. 22. 20:24
http://naradesign.net/ouif/css3/documentation.html
ie6,7,8 에서 css3 지원하기
http://fetchak.com/ie-css3/
<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<title>Insert title here</title>
<style>
.box {
background-color : #f78;
border-radius: 5px; /* Opera 10.5+, future browsers, and now also Internet Explorer 6+ using IE-CSS3 */
position: absolute;
width:100px;
behavior: url(ie-css3.htc); /* This lets IE know to call the script on all elements which get the 'box' class */
}
</style>
</head>
<body>
<p class="box">test<br />test</p>
</body>
</html>
728x90
반응형