Here's the part I added to my CSS style sheet in the header:
<style>
body{
background-color: #EAF6F6;
}
hr{
border-style: none;
border-top-style: dotted;
border-color: lightgrey;
border-width: 5px;
width: 5%;
}
</style>
And here's what it looks like:
As you can see, it more looks like squares than rounded shapes like dots and the tutorial I was following had the exact same piece of code but ended up with tiny dots in a line a.k.a dotted line! Why is that?


