I have been utilizing Brackets for a project at school and attempting to align div tags side by side, but I am not seeing any changes in the visual display of the code. I started to suspect an issue with the external CSS, so I tried altering the background color without success. Even in a basic blank document setup, I could not change the background color.
Here is the code I used to attempt changing the color:
body {
background-color: green;
}
Below is the HTML code I used for testing purposes:
<!DOCTYPE html>
<html>
<head>
<title>Solitare</title>
<link rel="stylesheet" href="Untitled-2.css" type="tex/css">
</head>
<body>
</body>
</html>
Could I be overlooking something obvious, or is there another underlying issue?
Thank you very much. G. Ward