Why is the hr
tag element not setting to green as coded below?
hr {
background-color: #00ff00;
}
<hr>
The background-color just sets background for hr
. By applying inline styles, we can make it easier.
https://jsbin.com/wuvolojuzu/
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<p>Hello</p>
<hr color="red" width="100%" />
<p>Hi</p>
</body>
</html>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With