Militsa

color border 2

Dec 18th, 2017
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.90 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Border</title>
  6.     <style>
  7. .red
  8. {
  9.     border: 4px red solid;
  10.     background: lightgrey;
  11.     border-radius: 10px;
  12.     text-align: center;
  13.     font-size: 30px;
  14. }
  15.         .green{
  16.             border: 4px green solid;
  17.             background: lightgrey;
  18.             border-radius: 10px;
  19.             text-align: center;
  20.             font-size: 30px;
  21.         }
  22.         .blue{
  23.             border: 4px blue solid;
  24.             background: lightgrey;
  25.             border-radius: 10px;
  26.             text-align: center;
  27.             font-size: 30px;
  28.         }
  29.     </style>
  30. </head>
  31. <body>
  32. <div class="red"><span style="color: red">Red</span> Border</div>
  33. <br/>
  34. <div class="green"><span style="color: green">Green</span> Border</div>
  35. <br/>
  36. <div class="blue"><span style="color: blue">Blue</span> Border</div>
  37. </body>
  38. </html>
Add Comment
Please, Sign In to add comment