I've been attempting to modify the color and disable re-sizing for my textarea through CSS, but unfortunately, the changes do not take effect after saving the file. I have thoroughly checked for any errors in my code and even had someone else try the same code on their computer, which worked flawlessly. Here's the snippet of code:
HTML -
<textarea rows="30" cols="50">Test</textarea>
CSS -
textarea {
resize: none;
background-color: #ccc;
}