Facebook
From Diminutive Ibis, 9 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 441
  1. <html>
  2. <head>
  3. <title> Selektor atrybutów</title>
  4. <style type="text/css">
  5. body {background-color: #a0c0c0;}
  6. p[align="left"]{font-size: 16pt; color: blue;}
  7. p[align="center"]{font-size: 16pt; color: green;}
  8. p[align="right"]{font-size: 16pt; color: red;}
  9. h2[size="16"]{color: yellow;font-size:16;}
  10. h2[size="20"]{color: darkblue;font-size:20;}
  11. </style>
  12. <body>
  13. <p align="left">Tekst wyrownany do lewej </p><br>
  14. <p align="center">Tekst wyśrodkowany </p><br>
  15. <p align="right">Tekst wyrownany do prawej </p><br>
  16. <h2 size="16" >Tekst</h2><br>
  17. <h2 size="20" >Tekst</h2>
  18. </body>
  19. </html>