Get the code of CSS Outline Color and watch video tutorials. You can practice using our code editor. Our practical guide will make your learning journey much easier. You can explore the tutorial and learn.
<p>Hello</p>
<p class="one">Hello</p>
<p class="two">Hello</p>
<p class="three">Hello</p>
<p class="four">Hello</p>
<p class="five">Hello</p>p {
border: 2px solid black;
padding: 2px;
}
.one {
outline-style: solid;
outline-color: red;
}
.two {
outline-style: dotted;
outline-color: green;
}
.three {
outline-style: dashed;
outline-color: blue;
}
.four {
outline-style: groove;
outline-color: cyan;
}
.five {
outline-style: inset;
outline-color: yellow;
}