Skip to content

Commit e48b73b

Browse files
author
Gowtham Prakaash
authored
misplaced semi-colon ( ; )
button { margin: 10px } ; changed into button { margin: 10px ; }
1 parent 31c4420 commit e48b73b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

javascript/building-blocks/events/random-color-eventhandlerproperty.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<title>Random color example — event handler property</title>
66
<style>
77
button {
8-
margin: 10px
9-
};
8+
margin: 10px;
9+
}
1010
</style>
1111
</head>
1212
<body>
@@ -26,4 +26,4 @@
2626
btn.onmouseout = bgChange;
2727
</script>
2828
</body>
29-
</html>
29+
</html>

0 commit comments

Comments
 (0)