CSS - właściwości outline-offset


outline-offset

kod wynik kodu
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-2">
<meta http-equiv="Content-Language" content="pl">
<title>webatak.pl - CSS - multi column</title>
<link rel="Stylesheet" type="text/css" href="style.css" />
<style type="text/css">
p.one {
  background-color: yellow;
  margin: 50px;
  padding: 50px;
  border: 5px solid blue;
  outline: 5px solid orange;
  outline-offset: 5px;
}
</style>
</head>
<body>

<p class="one">Koko Koko Euro Spoko</p>

</body>
</html>