CSS - właściwości outline


outline

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 {
  outline: 5px solid red;
}
p.two {
  outline: 5px solid blue;
  color: green;
}
p.three {
  outline: 5px dashed red;
}
p.four {
  outline: 5px dotted blue;
  color: green;
}
</style>
</head>
<body>

<p class="one">Koko </p>
<p class="two">Koko Koko Euro Spoko</p>
<p class="three">Koko </p>
<p class="four">Koko Koko Euro Spoko</p>

</body>
</html>