Created
November 19, 2012 20:12
-
-
Save njx/4113576 to your computer and use it in GitHub Desktop.
Brackets CSS highlighting bug
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
table { | |
border: 10px solid #999; | |
} | |
#mybox { | |
margin: 20px; | |
width: 100px; | |
height: 100px; | |
border: 1px solid #f00; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<link rel="stylesheet" href="table-test.css"> | |
</head> | |
<body> | |
<table> | |
<tr> | |
<td> | |
<div id="mybox"></div> | |
</td> | |
</tr> | |
</table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment