What's CSS version of <hr noshade/>

css, html

Solution

This might work:

hr {
  border: 1px solid rgb(128, 128, 128);
}
<hr>

Problem

I know that `noshade` is not supported in HTML5, and they recommend to use CSS to accomplish this... but what is the CSS replacement to this: ``` <hr noshade/> ```

Original source