<!DOCTYPE html>
<html>
<head>
<title>CSS outline property</title>
<style type="text/css">
p.first {
outline-style: solid;
outline-width: 2px;
outline-color: orange;
}
</style>
</head>
<body>
<p class="first">This element set outline property that change outline color, outline width, outline style of this element.</p>
</body>
</html>