Dreamweaver Output Error bug.
I believe I found a bug in Dreamweaver CC. I get an output error when using some CSS markup for 'grid-template-columns' and 'grid-template-rows'. It says that both lines expect a 'RBRACE', however, I've used this code before in other instances and the error doesn't pop up. Is posting this issue to the forums a way to alert the development team? Below is my HTML and CSS.
HTML
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Test Page</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<nav>
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Events</a>
<a href="#">Contact</a>
</nav>
</header>
<main>
<section id="intro">
<div>Testing</div>
</section>
</main>
</body>
</html>
CSS
@charset "utf-8";
/* CSS Document */
body {
background-color: black;
color: white;
margin: 0 auto;
}
nav {
display: flex;
justify-content: space-around;
background-color: darkred;
}
nav a {
color: white; padding: 10px;
}
#intro {
display: grid;
grid-template-columns: repeat(12, 1fr);
grid-template-rows: repeat(3, 1fr);
height: 90vh; background-color: #202020;
}
#intro div {
grid-column: 1 / 5;
grid-row: 2;
background-color:red;
}
