I've been playing around with CSS and I've learned how to select links that start with a certain pattern, like
a[href^="tutorials_"] { text-color: red; }
But now I'm curious if there's a way to select links that don't start with a specific pattern, such as all links that don't begin with "/tutorials_". I know there's a "not" selector, but I'm having trouble figuring out how to use it in this situation.