Css Outline Kullanımı - outline Kullanım Örneği

Konuya git Çalıştır
<html>
<head>
<style>
div {
  outline:4px dashed #0069FC; 
  height:100px;
  background-color:#4CAF50;
  border:5px solid #000; 
  color:#fff; 
  width:50%; 
  text-align:center; 
  padding:25px
}
</style>
</head>
<body>

     <div>outline verilmiş element</div>

</body>
</html>