Apply Outline property on your web pages
{outline-color : orange;}
property value
<!DOCTYPE html>
<html>
<body>
<p style="outline-style:orange;">
TDB Tutorials
</p>
</body>
</html>
{outline-style : solid;}
property value
<!DOCTYPE html>
<html>
<head>
<style>
.tdb-school{
background-color:white;
padding:10px 35px;
border-style:dotted;
border-radius:5px}
</style>
</head>
<!--Body-->
<body>
<button type="submit" class="tdb-school">
button border properties
</button>
</body>
</html>
We can also use outline Shorthand Property.
{outline : color style width}
property value
<!DOCTYPE html>
<html>
<!--Body-->
<body>
<button type="submit" class="tdb-school"
style="outline:orange dotted 5px;
padding:10px 35px;border:solid red 5px">
button outline property
</button>
</body>
</html>
Share TDB SCHOOL
Share this E-Learning Website on social media platforms with your friends and followers