When I indent the following html file in emacs, the line 'background-color' is not indented correctly. Can emacs be made to use css-mode for the css part?
<!doctype html>
<html lang=en>
<head>
<meta charset=utf-8>
<title>Page</title>
<style type = "text/css">
h2 {
background-color: #BBB;
}
</style>
</head>
<body>
<p>
<h2>Title</h2>
</p>
</body>
</html>