color: warto_koloru;

=====================================

	rgb(255, 0, 255)

=====================================

	rgb(100%, 0, 100%)

=====================================

p.redtext { color: red; }

=====================================

background-color: warto_koloru;

=====================================

<p style="background-color: blue;  color: white">Ten paragraf zostanie wywietlony jako biay tekst na niebieskim tle.</p>

=====================================

background-image: url("adres_url_do_obrazu");

=====================================

p { background-image: url("gradient.gif");
    height: 100px; width: 500px;
    border: thin solid black; }

=====================================

p.catborder { height: 135px; width: 336px; 
    background-image: url("cat.gif");
    padding: 80px 135px 18px 18px; }

=====================================

background-repeat: repeat | repeat-x | repeat-y | no-repeat;

=====================================

background-attachment: scroll | fixed;

=====================================

p.smiley { background-image: url("smiley.gif");
           background-repeat: repeat-x; 
           /*Ramka uyta dla wikszej zrozumiaoci obrazu*/
           border: thin solid black; }

=====================================

p.smileyscroll { height: 220px; width: 520px;
          overflow: scroll;
          background-image: url("smiley.gif");
          background-attachment: scroll;
          border: thin solid black; }

=====================================

background-position: warto_pozioma warto_pionowa

=====================================

background-position: 50% 50%;

=====================================

background-position: 25px 25px;

=====================================

background-position: top center;

=====================================

background-position: center center;

=====================================


