Add test for css class

This commit is contained in:
ILyoan 2013-05-31 17:57:16 +09:00
parent 8c92b8accd
commit aaeb683654
4 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,20 @@
<html>
<head>
<style type="text/css">
.c1 { color: red; }
.c2 { background: blue; }
#i1 { color: green; }
</style>
<script>
document.write("ok");
</script>
</head>
<body>
<div>
<div id='i1'>Hello</div>
<div class='c1'>World</div>
<div class='c2'>Hello</div>
<div class='c1 c2'>World</div>
</div>
</body>
</html>