diff --git a/mode/css/css.js b/mode/css/css.js
index 02cc93d9cf2c65ce044bcabf26bb5124b20ea3e9..7f8c46ebb6c138293f334d8f48cc72ef001b28f0 100644
--- a/mode/css/css.js
+++ b/mode/css/css.js
@@ -748,8 +748,8 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
         }
       },
       ":": function(stream) {
-        if (stream.match(/\s*\{/))
-          return [null, "{"];
+        if (stream.match(/\s*\{/, false))
+          return [null, null]
         return false;
       },
       "$": function(stream) {